/*------------------------------------------------------------------
[Table of contents]

Variables
Utilities
Layout
Page
General
Responsive
-------------------------------------------------------------------*/
/* variables */
/* Utilities */
/* ***********************************************************************************************
    MIXIN
************************************************************************************************ */
/* input-button */
/****/

/* General */
hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border-top: 1px solid #e1e1e1;
}

a {
	color: var(--color-text);
	text-decoration: none;
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

a:hover {
	color: var(--color-hightlight);
}

a:hover img.svg-hover {
	filter: var(--svg-hover);
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	margin-top: 0;
	margin-bottom: 10px;
	font-weight: 400;
}

h1, .h1 {
	font-size: 24px;
}

h2, .h2 {
	font-size: 20px;
}

h3, .h3 {
	font-size: 18px;
}

h4, .h4 {
	font-size: 16px;
}

h5, .h5 {
	font-size: 13px;
}

h6, .h6 {
	font-size: 11px;
}

body {
	margin: 0;
	font-family: "Helvetica";
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	color: #333;
	background: var(--white);
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	z-index: 1020;
}

:focus {
	-webkit-box-shadow: none !important;
	outline: -webkit-focus-ring-color auto 0px !important;
}

.dark-overlay::after {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
}

span.required {
	color: var(--red);
}

.mw-40 {
	max-width: 40% !important;
}

.mw-60 {
	max-width: 60% !important;
}

.image-60 {
	max-width: 60px;
	width: 100%;
}

.bg-main {
	background: var(--color-main) !important;
}

.bg-black {
	background: var(--black) !important;
}

.color-main {
	color: var(--color-main) !important;
}

.font-danger {
	color: var(--red);
}

.font-success {
	color: #390;
}

.font-primary {
	color: #5867dd;
}

.font-secondary {
	color: #e1e1ef;
}

.font-info {
	color: #5578eb;
}

.font-warning {
	color: #ffb822;
}

.font-light {
	color: var(--light);
}

.font-dark {
	color: #343a40;
}

.font-muted {
	color: #74788d;
}

.font-medium {
	font-weight: 500;
}

.font-semiblod {
	font-weight: 600;
}

.font-large {
	font-size: 16px;
}

.font-extra-large {
	font-size: 18px;
}

.bg-breadcrums {
	background-color: var(--white);
}

.bg-light {
	background-color: #ebebeb !important;
}

.separation-dash {
	border-bottom: 1px dashed #707070;
}

label {
	font-weight: 600;
}

input[type=text],
input[type=password],
input[type=email],
input[type=search],
textarea {
	width: 100%;
    max-width: 100%;
    padding: 0 15px;
    vertical-align: middle;
    background-color: #f4f4f4;
    border: 2px solid #f4f4f4;
    border-radius: 0px;
    height: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

textarea {
	padding: 10px 15px;
	min-height: 80px;
}

.btn-light {
	background-color: var(--light);
	border-color: var(--light);
}

.btn-normal {
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	padding: 0 25px;
	line-height: 40px;
	height: 40px;
}

.btn-dark {
	background-color: var(--black);
	border-color: var(--black);
}

.btn-dark.focus,
.btn-dark:focus,
.btn-dark:hover {
	background-color: var(--color-hightlight);
	border-color: var(--color-hightlight);
}

.disable {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
	-webkit-user-select: none;
  /* Chrome all / Safari all */
	-moz-user-select: none;
  /* Firefox all */
	-ms-user-select: none;
  /* IE 10+ */
	user-select: none;
}

.inner-checkbox {
	padding-left: 30px;
	margin-bottom: 0;
	position: relative;
	cursor: pointer;
	padding-top: 2px;
	font-weight: 400;
}

.inner-checkbox > input {
	position: absolute;
	z-index: -1;
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
}

.inner-checkbox > input:checked ~ span {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.inner-checkbox > input:checked ~ span::after {
	display: block;
}

.inner-checkbox > input:disabled ~ span {
	opacity: 0.6;
	filter: alpha(opacity=60);
	pointer-events: none;
}

.inner-checkbox > span {
	border-radius: 3px;
	position: absolute;
	top: 4px;
	left: 0;
	height: 18px;
	width: 18px;
	border: 1px solid var(--color-hightlight);
}

.inner-checkbox > span::after {
	content: '';
	position: absolute;
	display: none;
	top: 50%;
	left: 50%;
	margin-left: -2px;
	margin-top: -6px;
	width: 5px;
	height: 10px;
	border-width: 0 2px 2px 0 !important;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	border: solid var(--color-hightlight);
}

.inner-checkbox:hover > input::not([disabled]):checked ~ span,
  .inner-checkbox > input:checked ~ span {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.entire-radio-inline .inner-radio {
	display: inline-block;
	margin-right: 15px;
	margin-bottom: 0px;
}

.inner-radio > span {
	border: 1px solid var(--color-hightlight);
}

.inner-radio > span:after {
	border: solid var(--color-hightlight);
	background: var(--color-hightlight);
}

.inner-radio {
	display: inline-block;
	position: relative;
	padding-left: 18px;
	text-align: left;
	margin-bottom: 10px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	height: 18px;
}

.inner-radio.inner-radio--disabled {
	opacity: 0.8;
	cursor: not-allowed;
}

.inner-radio > input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.inner-radio > span {
	background: none;
	position: absolute;
	top: 4px;
	left: 0;
	height: 18px;
	width: 18px;
	border-radius: 50% !important;
}

.inner-radio > span:after {
	content: '';
	position: absolute;
	display: none;
	top: 50%;
	left: 50%;
	margin-left: -3px;
	margin-top: -3px;
	width: 6px;
	height: 6px;
	border-radius: 100% !important;
}

.inner-radio > input:checked ~ span {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background: none;
}

.inner-radio > input:checked ~ span:after {
	display: block;
}

.inner-radio:hover > input:not([disabled]):checked ~ span,
.inner-radio > input:checked ~ span {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.inner-radio > input:disabled ~ span {
	opacity: 0.6;
	pointer-events: none;
}

.color-white {
	color: var(--white) !important;
}

.color-hover {
	color: var(--color-hightlight) !important;
}

.color-black {
	color: var(--black) !important;
}

.bg-toolbar {
	background-color: var(--light);
}

.opacity-0 {
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
}

.is-mobile .nh-row > .container {
	max-width: 768px;
}

.disable-scroll {
	overflow: hidden;
	height: 100%;
}

.container-full {
	padding: 0;
}

.container-full > .row {
	margin-right: 0;
	margin-left: 0;
}

.container-full > .row > .col, .container-full > .row > [class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}

.select2-container {
	height: 40px;
}

.select2-container .select2-selection--single {
	height: 40px;
	outline: none;
	background-color: var(--light);
	border: 2px solid #dee2e6;
	border-radius: 0;
}

.select2-container .select2-selection--single .select2-selection__arrow {
	right: 10px;
	height: 38px;
}

.select2-container .select2-selection--single .select2-selection__arrow b {
	display: none;
}

.select2-container .select2-selection--single .select2-selection__arrow::after {
	content: "\e92d";
	display: block;
	font-family: "iconsax";
	font-weight: 900;
	font-style: normal;
	line-height: 38px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
	color: var(--color-text);
	line-height: 36px;
	padding-left: 15px;
}

.select2-dropdown {
	border: 2px solid #dee2e6;
	border-top: none;
}

.select2-dropdown .select2-results__option {
	padding: 6px 15px;
	outline: none;
}

.select2-dropdown .select2-results__option.select2-results__option--highlighted[aria-selected], .select2-dropdown .select2-results__option.select2-results__option--highlighted[data-selected] {
	background-color: var(--gray);
}

.select2-dropdown .select2-search--dropdown {
	padding: 10px 15px;
	background-color: var(--light);
	border-bottom: 1px solid #dee2e6;
}

.select2-dropdown .select2-search--dropdown .select2-search__field {
	background-color: var(--white);
}

.select2-dropdown .select2-results__options::-webkit-scrollbar {
	width: 6px;
}

.select2-dropdown .select2-results__options::-webkit-scrollbar-track {
	border-radius: 8px;
	-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.select2-dropdown .select2-results__options::-webkit-scrollbar-thumb {
	border-radius: 8px;
	background: #e6e6e6;
}

.align-row-center > .container > .row > div {
	margin-bottom: auto !important;
	margin-top: auto !important;
}

.btn-submit {
	background: var(--color-main);
	color: var(--white);
	text-align: center;
	border-radius: 5px;
	padding: 0 25px !important;
	height: 40px;
	line-height: 40px !important;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.btn-submit:hover {
	background-color: var(--color-hightlight);
	color: var(--white);
}

.bootstrap-select>.dropdown-toggle {
	background-color: #fff;
	border: 1px solid #dee2e6;
	border-radius: 0.25rem !important;
}

.owl-carousel::before, .owl-carousel::after {
	content: '';
	display: block;
	width: 80px;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: -1;
}

.owl-carousel::before {
	left: -80px;
}

.owl-carousel::after {
	right: -80px;
}

.owl-carousel:hover .owl-nav i {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
}

.owl-carousel:hover .owl-nav .owl-prev {
	left: -55px;
}

.owl-carousel:hover .owl-nav .owl-next {
	right: -55px;
}

.owl-nav > div {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	-o-transform: translateY(50%);
	transform: translateY(50%);
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.owl-nav > div.disabled i {
	color: rgba(0, 0, 0, 0.1);
}

.owl-nav .owl-prev {
	left: -75px;
}

.owl-nav .owl-next {
	right: -75px;
}

.owl-nav i {
	color: var(--black);
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
	height: 40px;
	width: 40px;
	line-height: 40px;
	font-size: 24px;
	text-align: center;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.owl-nav i:hover {
	color: var(--color-hightlight);
}

.owl-dots button:focus {
	outline: none;
}

.title-section {
	font-size: 18px;
	margin-bottom: 0;
	/*background: var(--color-main);*/
	/*color: var(--white);*/
	text-transform: uppercase;
}

.title-section span {
    background: var(--color-hightlight);
    display: inline-block;
    padding: 5px 10px;
}

/*.title-section-1 {
	font-weight: bold;
	line-height: 1;
	margin-bottom: 25px;
	color: var(--color-main);
	text-transform: uppercase;
	font-size: 20px;
}*/

.title-section-2 {
	font-weight: 600;
	color: var(--color-main);
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 30px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e3e3e3;
}

.title-section-2 span {
	position: relative;
	font-weight: 700;
}

.title-section-2 span::after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: -16px;
	background-color: var(--color-main);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

[nh-owl-slick] {
	visibility: hidden;
}

.slick-initialized[nh-owl-slick] {
	visibility: visible;
}

.events-none {
	pointer-events: none;
}

.error-page {
	font-size: 18px;
}

.error-page i {
	font-size: 80px;
}

.error-page a {
	color: #390;
}

.ratio-3-2,
.ratio-1-1,
.ratio-16-9,
.ratio-4-3,
.ratio-8-5,
.ratio-custome {
	position: relative;
}

.ratio-3-2 iframe, .ratio-3-2 video, .ratio-3-2 img,
  .ratio-1-1 iframe,
  .ratio-1-1 video,
  .ratio-1-1 img,
  .ratio-16-9 iframe,
  .ratio-16-9 video,
  .ratio-16-9 img,
  .ratio-4-3 iframe,
  .ratio-4-3 video,
  .ratio-4-3 img,
  .ratio-8-5 iframe,
  .ratio-8-5 video,
  .ratio-8-5 img,
  .ratio-custome iframe,
  .ratio-custome video,
  .ratio-custome img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.ratio-3-2 {
	padding-top: 66.66%;
}

.ratio-1-1 {
	padding-top: 100%;
}

.ratio-16-9 {
	padding-top: 56.25%;
}

.ratio-4-3 {
	padding-top: 75%;
}

.ratio-8-5 {
	padding-top: 62.5%;
}

.ratio-custome {
	padding-top: 130%;
}

.font-size-extra-large {
	font-size: 18px;
}

.border-top {
	border-top: 1px solid #e3e3e3;
}

.shadow-modal {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
	padding: 5px 10px;
	border: solid 5px #797979;
}

.page-404-content {
	position: relative;
	max-width: 460px;
	margin: 80px auto 70px;
}

.page-404-content a {
	font-weight: 700;
}

.page-404-content a:hover {
	color: var(--color-hightlight);
}

.responsive-table {
	width: 100%;
	margin-bottom: 1.5em;
	border-spacing: 0;
}

.responsive-table .btn-action {
	font-size: 18px;
}

@media (min-width: 48em) {
	.responsive-table {
		font-size: .9em;
	}
}

@media (min-width: 62em) {
	.responsive-table {
		font-size: 1em;
	}
}

.responsive-table thead {
	position: absolute;
	clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
	padding: 0;
	border: 0;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

@media (min-width: 48em) {
	.responsive-table thead {
		position: relative;
		clip: auto;
		height: auto;
		width: auto;
		overflow: auto;
	}
}

.responsive-table thead th {
	background-color: var(--color-main);
	border: 1px solid var(--color-main);
	font-weight: normal;
	color: white;
	text-align: center;
}

.responsive-table thead th:first-of-type {
	text-align: left;
}

.responsive-table tbody,
  .responsive-table tr,
  .responsive-table th,
  .responsive-table td {
	display: block;
	padding: 0;
	text-align: left;
	white-space: normal;
}

@media (min-width: 48em) {
	.responsive-table tr {
		display: table-row;
	}
}

.responsive-table [scope="disable"] {
	display: none;
}

@media (min-width: 48em) {
	.responsive-table [scope="disable"] {
		display: table-cell;
	}
}

.responsive-table th,
  .responsive-table td {
	padding: .7em .5em;
	vertical-align: middle;
}

@media (min-width: 48em) {
	.responsive-table th,
      .responsive-table td {
		display: table-cell;
	}
}

.responsive-table caption {
	margin-bottom: 1em;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
}

@media (min-width: 48em) {
	.responsive-table caption {
		font-size: 1.5em;
	}
}

.responsive-table tfoot {
	font-size: .8em;
	color: var(--color-main);
	border-top: 1px solid #e3e3e3;
}

@media (min-width: 62em) {
	.responsive-table tfoot {
		font-size: .9em;
		border-top: 0;
	}
}

.responsive-table tfoot th[scope="col"] {
	position: absolute;
	clip: rect(1px 1px 1px 1px);
	padding: 0;
	border: 0;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

@media (min-width: 62em) {
	.responsive-table tfoot th[scope="col"] {
		position: relative;
		clip: auto;
		height: auto;
		width: auto;
		overflow: auto;
	}
}

.responsive-table tfoot td[data-title]:before {
	content: attr(data-title);
	float: left;
	font-weight: bold;
}

@media (min-width: 30em) {
	.responsive-table tfoot td[data-title]:before {
		font-size: .9em;
	}
}

@media (min-width: 48em) {
	.responsive-table tfoot td[data-title]:before {
		content: none;
	}
}

@media (min-width: 48em) {
	.responsive-table tbody {
		display: table-row-group;
	}
}

@media (min-width: 48em) {
	.responsive-table tbody tr {
		display: table-row;
		border-width: 1px;
	}
}

.responsive-table tbody tr:last-of-type {
	margin-bottom: 0;
}

.responsive-table tbody tr:nth-of-type(even) {
	background-color: #f1f1f1;
}

@media (min-width: 48em) {
	.responsive-table tbody tr:nth-of-type(even) {
		background-color: #f1f1f1;
	}
}

@media (min-width: 30em) {
	.responsive-table tbody th[scope="row"] {
		border-left: 1px solid #ced4da;
		border-bottom: 1px solid #ced4da;
	}
}

@media (min-width: 48em) {
	.responsive-table tbody th[scope="row"] {
		background-color: transparent;
		color: var(--color-main);
		text-align: left;
	}
}

.responsive-table tbody td {
	text-align: right;
}

@media (min-width: 48em) {
	.responsive-table tbody td {
		border-left: 1px solid #ced4da;
		border-bottom: 1px solid #ced4da;
		text-align: center;
	}

	.responsive-table tfoot td {
		border-left: 1px solid #ced4da;
		border-bottom: 1px solid #ced4da;
	}
}

@media (min-width: 48em) {
	.responsive-table tbody td.btn-setdafault {
		text-align: center;
	}
}

.responsive-table tbody td.btn-setdafault .inner-radio {
	margin-bottom: 0;
}

@media (min-width: 48em) {
	.responsive-table tbody td.text-center-table {
		text-align: center;
	}
}

@media (min-width: 48em) {
	.responsive-table tbody td:last-of-type,
      .responsive-table tfoot td:last-of-type {
		border-right: 1px solid #ced4da;
	}
}

.responsive-table tbody td[data-type=currency] {
	text-align: right;
}

.responsive-table tbody td[data-title]:before {
	content: attr(data-title);
	float: left;
}

@media (min-width: 30em) {
	.responsive-table tbody td[data-title]:before {
		font-size: .9em;
	}
}

@media (min-width: 48em) {
	.responsive-table tbody td[data-title]:before {
		content: none;
	}
}

/* Layout */
.topbar-header {
	border-bottom: 1px solid #e3e3e3;
}

.entry-topbar {
	display: flex;
	justify-content: space-between;
}

.entry-topbar .left-topbar {
	display: flex;
}

.entry-topbar .dropdown-topbar {
	display: flex;
}

.language-section, .currency-section {
	position: relative;
	font-size: 12px;
}

.language-section::before, .currency-section::before {
	content: '';
	background: #a6a6a6;
	height: 10px;
	width: 1px;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.language-section ul, .currency-section ul {
	position: absolute;
	background: var(--white);
	min-width: 50px;
	top: 100%;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 1000;
	border-top: 1px solid #e3e3e3;
	margin-bottom: 0;
	-webkit-animation: nav_menu_anim_close 0.3s both;
	-o-animation: nav_menu_anim_close 0.3s both;
	animation: nav_menu_anim_close 0.3s both;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
	-webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
}

.language-section ul a, .currency-section ul a {
	padding: 0 10px;
	line-height: 30px;
	height: 30px;
	display: block;
	color: #333;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.language-section ul a:hover, .currency-section ul a:hover {
	background: #f4f4f4;
}

.language-section:hover ul, .currency-section:hover ul {
	-webkit-animation: nav_menu_anim_open 0.3s both;
	-o-animation: nav_menu_anim_open 0.3s both;
	animation: nav_menu_anim_open 0.3s both;
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
	pointer-events: unset;
}

.currency-section::after {
	content: '';
	background: #a6a6a6;
	height: 10px;
	width: 1px;
	right: 0px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

a.language-picker, a.currency-picker {
	text-transform: uppercase;
	font-weight: 600;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0 10px;
	color: #666;
}

a.language-picker::after, a.currency-picker::after {
	content: "\e92d";
	margin-left: 2px;
	font-family: "iconsax";
	vertical-align: bottom;
	font-weight: 600;
}

a.language-picker:hover, a.currency-picker:hover {
	color: #666;
	opacity: 0.7;
	filter: alpha(opacity=70);
}

.social-section ul {
	padding-left: 5px;
	margin-bottom: 0;
}

.social-section ul li {
	display: inline-block;
	line-height: 40px;
	height: 40px;
}

.social-section ul li a {
	display: inline-block;
	width: 24px;
	font-size: 16px;
	text-align: center;
	color: var(--color-text);
}

.social-section ul li a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
}

.entire-action-header .btn-action-header:hover {
	color: #bbbbbb;
}

.user-section .dropdown-menu {
	min-width: 180px;
}

.btn-action-header {
    display: flex;
    align-items: center;
	height: 46px;
	line-height: 46px;
	padding: 0 12px;
}

.btn-action-header i {
	text-align: center;
    line-height: 20px;
    font-size: 29px;
}

.user-section .dropdown-item img {
	width: 23px;
}

.entire-action-header {
	position: relative;
}

.entire-action-header .form-dropdown {
	position: absolute;
	padding: 10px;
	background-color: var(--white);
	width: 350px;
	top: 100%;
	left: auto;
	right: 0;
	z-index: 1000;
	margin-bottom: 0;
	-webkit-animation: nav_menu_anim_close 0.3s both;
	-o-animation: nav_menu_anim_close 0.3s both;
	animation: nav_menu_anim_close 0.3s both;
	-webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
	-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
}

.entire-action-header:hover .form-dropdown {
	-webkit-animation: nav_menu_anim_open 0.3s both;
	-o-animation: nav_menu_anim_open 0.3s both;
	animation: nav_menu_anim_open 0.3s both;
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
	pointer-events: unset;
}

.search-section .btn-submit {
	padding: 0 0.75rem !important;
	font-size: 13px;
}

.form-search .wrap-suggestion,
.box-suggest .wrap-suggestion {
	position: absolute;
	z-index: 1;
	background-color: #fff;
	width: 100%;
	padding: 10px;
}

.wrap-suggestion ul:last-child {
	margin-bottom: 0;
}

.wrap-suggestion ul li {
	margin-bottom: 10px;
}

.wrap-suggestion ul li:last-child {
	margin-bottom: 0;
}

.wrap-suggestion ul li:hover, .wrap-suggestion ul li.active {
	background-color: #e6e6e6;
}

.wrap-suggestion .suggest-name {
	margin-bottom: 0px;
}

.wrap-suggestion .price-amount {
	font-size: 13px;
}

.wrap-suggestion .price-amount.old-price {
	margin-left: 5px;
}

.box-suggest .wrap-suggestion {
	border: 1px solid #e6e6e6;
	border-top: 0;
	padding: 10px;
}

.user-section .form-title {
	margin-top: 0;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e6e6e6;
}

.user-section .form-title span {
	float: left;
	text-transform: uppercase;
	font-weight: 600;
}

.user-section .form-title a {
	float: right;
	font-size: 14px;
	color: var(--color-hightlight);
}

.user-section label {
	color: var(--color-main);
}

.user-section .btn-user {
	width: 100%;
}

.user-section .login-form-footer a {
	color: var(--color-hightlight);
}

.btn-mini-cart {
	position: relative;
}

.items-number {
	font-size: 14px;
	font-weight: 500;
}

.btn-mini-wishlist {
	position: relative;
}

.slider-section {
	color: var(--color-main);
}

.slider-section .slick-next,
  .slider-section .slick-prev {
	background-color: rgba(255, 255, 255, 0.75);
	color: var(--color-main);
}

.slider-section .slick-next:hover,
    .slider-section .slick-prev:hover {
	background-color: var(--color-main);
}

.slider-section .slick-next:hover::before,
      .slider-section .slick-prev:hover::before {
	color: var(--white);
}

.slider-section .slick-next {
	right: 40px !important;
}

.slider-section .slick-prev {
	left: 40px !important;
}

.slider-section .slick-slider::before,
  .slider-section .slick-slider::after {
	content: none;
}

.slider-section .slick-list {
	margin: 0;
}

.slider-section .slick-list .slick-slide {
	margin: 0;
}

.slider-section .inner-title {
	font-size: 24px;
	position: relative;
	padding-bottom: 5px;
	margin-bottom: 30px;
}

.slider-section .inner-title::after {
	content: '';
	height: 1px;
	width: 93px;
	background-color: var(--color-main);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}

.slider-section .inner-description {
	font-size: 85px;
	line-height: 90px;
	margin-bottom: 30px;
}

.slider-section .inner-content {
	font-size: 16px;
	color: var(--color-text);
	line-height: 26px;
	margin-bottom: 50px;
	margin-top: 30px;
}

.slider-section .btn-submit {
	line-height: 44px;
	padding: 0 20px;
}

.brand-section .owl-stage {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.brand-section .brand-item img {
	height: auto;
	width: auto;
	margin: 0 auto;
	padding: 0 10px;
}

.breadcrumbs-section {
	display: flex;
	flex: 1 1 auto;
	flex-wrap: wrap;
	align-items: center;
	font-size: 13px;
	line-height: 24px;
}

.breadcrumbs-section a {
	margin-right: 6px;
	line-height: 24px;
	color: var(--color-text);
}

.breadcrumbs-section a::after {
	content: '\e936';
	font-family: "iconsax";
	margin-left: 5px;
	font-size: 12px;
	font-weight: 900;
}

.breadcrumbs-section a:hover {
	color: var(--color-main);
}

.breadcrumbs-section h1 {
	margin-bottom: 0;
	font-size: 13px;
	line-height: 24px;
}

.breadcrumbs-section h1 a::after {
	content: none;
}

.breadcrumbs-section span {
	font-weight: 600;
	color: var(--color-main);
}

.categories-section {
	margin-bottom: 50px;
}

.categories-section li {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 6px;
	flex-direction: row;
}

.categories-section li:last-child {
	margin-bottom: 0;
}

.categories-section a {
	padding: 6px 0 6px 0px;
	display: block;
	width: 100%;
}

.categories-section a:hover {
	color: var(--color-main);
}

.categories-section a.active {
	color: var(--color-hightlight);
	font-weight: 700;
}

.categories-section a.active > .has-child > a {
	color: var(--color-hightlight);
	font-weight: 700;
}

.categories-section .list-child {
	flex: 1 1 100%;
	max-width: 100%;
	border-top: 1px solid #e3e3e3;
	display: none;
}

.categories-section .list-child li {
	position: relative;
}

.categories-section > li.has-child > ul {
	padding-left: 15px;
}

.categories-section > li.has-child > .list-child {
	border-top: 0;
	background-color: #f5f5f5;
}

.categories-section > li.has-child > .list-child > li.has-child > .list-child {
	padding-left: 15px;
}

.categories-section > li.has-child > .list-child > li.has-child > .list-child > li.has-child > .list-child {
	padding-left: 15px;
}

.categories-section .dropdown-toggle {
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	width: 30px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	z-index: 1;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.categories-section .dropdown-toggle.open {
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.tags-title {
	margin-right: 15px;
}

.tags li {
	display: inline-block;
}

.tags li a {
	line-height: 1.2;
	padding: 6px 8px;
	margin: 0 2px 5px 0;
	border: 1px solid #e3e3e3;
	display: block;
}

.tags li a:hover {
	color: var(--black);
	border-color: #f1f1f1;
	background-color: #f1f1f1;
}

.entire-map {
	position: relative;
	padding-top: 36.45%;
}

.entire-map iframe {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.title-address {
	font-weight: 600;
	color: var(--color-main);
}

.entire-address {
	padding: 50px 0;
}

.entire-address address {
	line-height: 30px;
}

.form-contact .title-section {
	padding-top: 80px;
}

.filter-member .btn-submit {
	padding: 0 9px;
}

.table-member th i {
	font-size: 18px;
}

.datepicker {
	width: 265px;
	padding: 10px;
}

.datepicker.datepicker-orient-top {
	margin-top: 8px;
}

.datepicker table {
	width: 100%;
}

.datepicker td, .datepicker th {
	font-weight: regular;
	width: 35px;
	height: 35px;
	border-radius: 3px;
}

.datepicker thead th {
	color: #74788d;
}

.datepicker thead th.prev, .datepicker thead th.datepicker-switch, .datepicker thead th.next {
	font-weight: 500;
	color: #74788d;
}

.datepicker thead th.prev:hover, .datepicker thead th.datepicker-switch:hover, .datepicker thead th.next:hover {
	background: #f7f8fa !important;
}

.datepicker thead th.prev i, .datepicker thead th.datepicker-switch i, .datepicker thead th.next i {
	font-size: 1.2rem;
	color: #74788d;
}

.datepicker thead th.prev i::before, .datepicker thead th.datepicker-switch i::before, .datepicker thead th.next i::before {
	line-height: 0;
	vertical-align: middle;
}

.datepicker thead th.dow {
	color: #595d6e;
	font-weight: 500;
}

.datepicker tbody tr > td.day {
	color: #595d6e;
}

.datepicker tbody tr > td.day:hover {
	background: #ebedf2;
	color: #595d6e;
}

.datepicker tbody tr > td.day.old {
	color: #74788d;
}

.datepicker tbody tr > td.day.new {
	color: #595d6e;
}

.datepicker tbody tr > td.day.selected, .datepicker tbody tr > td.day.selected:hover, .datepicker tbody tr > td.day.active, .datepicker tbody tr > td.day.active:hover {
	background: #5867dd;
	color: #ffffff;
}

.datepicker tbody tr > td.day.today {
	position: relative;
	background: rgba(93, 120, 255, 0.7) !important;
	color: #ffffff !important;
}

.datepicker tbody tr > td.day.today:before {
	content: '';
	display: inline-block;
	border: solid transparent;
	border-width: 0 0 7px 7px;
	border-bottom-color: #ffffff;
	border-top-color: #ebedf2;
	position: absolute;
	bottom: 4px;
	right: 4px;
}

.datepicker tbody tr > td.day.range {
	background: #f7f8fa;
}

.datepicker tbody tr > td span.year, .datepicker tbody tr > td span.hour, .datepicker tbody tr > td span.minute, .datepicker tbody tr > td span.month {
	color: #595d6e;
}

.datepicker tbody tr > td span.year:hover, .datepicker tbody tr > td span.hour:hover, .datepicker tbody tr > td span.minute:hover, .datepicker tbody tr > td span.month:hover {
	background: #f7f8fa;
}

.datepicker tbody tr > td span.year.focused, .datepicker tbody tr > td span.year.focused:hover, .datepicker tbody tr > td span.year.active:hover, .datepicker tbody tr > td span.year.active.focused:hover, .datepicker tbody tr > td span.year.active, .datepicker tbody tr > td span.hour.focused, .datepicker tbody tr > td span.hour.focused:hover, .datepicker tbody tr > td span.hour.active:hover, .datepicker tbody tr > td span.hour.active.focused:hover, .datepicker tbody tr > td span.hour.active, .datepicker tbody tr > td span.minute.focused, .datepicker tbody tr > td span.minute.focused:hover, .datepicker tbody tr > td span.minute.active:hover, .datepicker tbody tr > td span.minute.active.focused:hover, .datepicker tbody tr > td span.minute.active, .datepicker tbody tr > td span.month.focused, .datepicker tbody tr > td span.month.focused:hover, .datepicker tbody tr > td span.month.active:hover, .datepicker tbody tr > td span.month.active.focused:hover, .datepicker tbody tr > td span.month.active {
	background: #5867dd;
	color: #ffffff;
}

.datepicker tfoot tr > th.today, .datepicker tfoot tr > th.clear {
	border-radius: 3px;
	font-weight: 500;
}

.datepicker tfoot tr > th.today:hover, .datepicker tfoot tr > th.clear:hover {
	background: #ebedf2;
}

.datepicker.datepicker-inline {
	border: 1px solid #ebedf2;
}

.entire-file {
	margin-top: 10px;
}

.entire-file a {
	display: inline-block;
	margin: 3px;
}

.remove-item {
	font-size: 16px;
	cursor: pointer;
}

.remove-item:hover i {
	color: var(--color-hightlight);
}

.qc-section-1 {
	background-color: var(--color-main);
	padding: 3px 0 4px;
	color: var(--white);
}

.hight-light .entry-content {
	display: flex;
	align-items: center;
}

.hight-light .inner-icon {
	margin-right: 10px;
}

.hight-light .inner-icon i {
	font-size: 38px;
	color: var(--color-main);
}

.hight-light .inner-content h4 {
	margin-bottom: 0;
	color: var(--color-main);
	font-weight: 600;
}

.hight-light .inner-content p {
	margin-bottom: 0;
}

.deal-section {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.entire-deal {
	padding: 85px 0;
}

.entire-deal .slogan-deal {
	color: var(--color-main);
	font-size: 18px;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 40px;
	text-transform: capitalize;
}

.entire-deal .slogan-deal::after {
	content: '';
	background-color: var(--color-main);
	width: 90px;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.entire-deal .title-deal {
	color: var(--color-main);
	font-size: 48px;
	text-transform: capitalize;
	margin-bottom: 30px;
	font-weight: 600;
}

.entire-deal .price {
	margin-bottom: 55px;
}

.entire-deal .price .price-amount {
	font-size: 24px;
	color: var(--color-hightlight);
}

.entire-deal .price .price-amount:not(.old-price) {
	font-weight: 700;
}

.entire-deal .price .price-amount.old-price {
	margin-left: 15px;
	color: var(--color-text);
	text-decoration: line-through;
}

.entire-deal .countdown-wrapper {
	margin-bottom: 55px;
}

.entire-deal .countdown-timer > div {
	font-size: 24px;
	height: 70px;
	width: 70px;
	background-color: var(--white);
	line-height: 28px;
	padding-top: 5px;
}

.entire-deal .countdown-timer > div span {
	font-size: 16px;
}

.entire-deal .description-deal {
	color: #7a7a7a;
	margin-bottom: 55px;
}

.entire-deal .button-deal a {
	font-weight: 700;
	padding: 12px 28px;
	display: inline-block;
}

.entire-deal .button-deal a i {
	margin-left: 5px;
}

.entire-video-banner {
	position: relative;
	padding-top: 26.04%;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}

.entire-video-banner .entire-content {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	color: var(--color-main);
	text-transform: capitalize;
	z-index: 4;
}

.entire-video-banner .entire-content .inner-category {
	font-size: 24px;
	margin-bottom: 10px;
}

.entire-video-banner .entire-content .inner-descript {
	font-size: 72px;
	line-height: 80px;
	font-weight: 600;
}

.entire-video-banner .btn-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	height: 100px;
	width: 100px;
	line-height: 100px;
	text-align: center;
	font-size: 70px;
	color: var(--color-hightlight);
	cursor: pointer;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border: 1px solid var(--color-hightlight);
	z-index: 5;
}

.entire-video-banner #entire-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 3;
}

.entire-video-banner::after {
	content: '';
	background-color: rgba(0, 0, 0, 0.01);
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.entire-video-banner .wrp-video-banner::after {
	content: '';
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAQAAAD8IX00AAAADklEQVR42mP4/58BAwAAJu4B/7J4cV8AAAAASUVORK5CYII=");
	background-size: 3px 3px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}

.page-title-section.page-categories {
	padding: 80px 0;
}

.page-title-section .product-categories li {
	display: inline-block;
}

.page-title-section .product-categories li img {
	margin-bottom: 10px;
	width: 50px;
	height: 50px;
	object-fit: cover;
}

.page-title-section .product-categories li span.category-name {
	font-weight: 700;
	color: #000;
	display: inline-block;
}

.page-title-section .product-categories li .category-summary {
	display: block;
}

.page-title-section .product-categories li span.category-products-count {
	font-size: 12px;
	color: #000;
	display: block;
}

.page-title-section .product-categories li a {
	display: block;
	padding: 10px 25px;
}

.video-banner-section .title-section {
	margin-bottom: 50px;
}

.banner-product-category {
	background-size: cover !important;
	margin-bottom: 40px;
	position: relative;
}

.banner-product-category::after {
	content: '';
	background: rgba(0, 0, 0, 0.01);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.banner-product-category .inner-content {
	text-align: right;
	padding: 50px 60px 50px 60px;
	z-index: 1;
	position: relative;
}

.banner-product-category .inner-content h3 {
	font-size: 32px;
	line-height: 38px;
	color: var(--color-main);
	font-weight: 600;
}

.banner-product-category .inner-content h3 span {
	font-weight: 600;
	color: var(--red);
}

.footer-menu-section ul {
	margin-bottom: 0;
}

.footer-menu-section ul li {
	margin-bottom: 10px;
}

.footer-menu-section ul li:last-child {
	margin-bottom: 0;
}

.setting-menu {
	position: relative;
	background: var(--black);
}

.setting-menu > .container > .row > div {
	position: static;
}

.btn-menu-mobile {
	display: none;
}

.marker-image {
	height: 16px;
	width: 16px;
	object-fit: cover;
	margin-right: 5px;
}

.menu-section .menu-top {
	display: none;
}

.menu-section .menu-top .menu-header {
	font-weight: bold;
	font-size: 20px;
}

.menu-section ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.menu-section ul li a:hover {
	cursor: pointer;
}

.menu-section .grower {
	display: none;
}

.menu-section .entry-menu {
	top: 100%;
	z-index: 12;
	padding: 20px 25px;
	position: absolute;
	background-color: var(--white);
	border-top: 1px solid #e3e3e3;
	margin-top: -1px;
}

.menu-section .entry-menu::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	height: calc(15px + 1px);
}

.menu-section .entry-menu li {
	position: relative;
}

.menu-section .entry-menu.multil-column {
	min-width: 730px;
}

.menu-section .entry-menu.full-width {
	width: 100%;
	left: 0;
}

.menu-section .entry-menu.full-width .menu-link {
	display: inline-block;
}

.menu-section .entry-menu.full-width .container-menu {
	width: 1170px;
}

.menu-section .entry-menu.tabs-menu {
	width: 1170px;
	left: 0;
	right: 0;
	margin: auto;
	padding: 0;
}

.menu-section .entry-menu.tabs-menu .tabs-item {
	width: 100%;
}

.menu-section .entry-menu.tabs-menu .tabs-item > .menu-link {
	width: 25%;
	float: left;
	padding: 15px;
	position: relative;
}

.menu-section .entry-menu.tabs-menu .tabs-item > .menu-link > .child-indicator {
	right: 15px;
}

.menu-section .entry-menu.tabs-menu .tabs-item > .sub-menu {
	padding: 20px;
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
	width: 75%;
	float: left;
	position: absolute;
	left: 25%;
	top: 0;
	min-height: 100%;
	border-left: 1px solid #e3e3e3;
}

.menu-section .entry-menu.tabs-menu .tabs-item.active > .menu-link {
	background-color: #e3e3e3;
}

.menu-section .entry-menu.tabs-menu .container-menu {
	position: relative;
}

.menu-section .entry-menu.dropdown {
	min-width: 250px;
	padding: 10px 15px;
	right: 13%;
}

.menu-section .entry-menu.dropdown ul {
	position: absolute;
	top: calc(-50% + 8px);
	left: calc(100% + 15px);
	min-width: 250px;
	background-color: var(--white);
	border-top: 1px solid #e3e3e3;
	margin-top: -1px;
	padding: 10px 15px;
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	-o-transform: translateY(20px);
	transform: translateY(20px);
}

.menu-section .entry-menu.dropdown li:hover > ul {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}

.menu-section .entry-menu.dropdown li:hover > a {
	color: var(--color-hightlight);
}

.menu-section .entry-menu.dropdown li:hover > ul {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}

.menu-section .entry-menu.dropdown .has-child > ul::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 25px;
	left: -25px;
}

.menu-section .container-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.menu-section .row-menu {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-right: -10px;
	margin-left: -10px;
}

.menu-section .column-2 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	padding: 0 10px;
}

.menu-section .column-3 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
	padding: 0 10px;
}

.menu-section .column-4 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
	padding: 0 10px;
}

.menu-section .column-5 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
	padding: 0 10px;
}

.menu-section .menu-title {
	font-weight: 600;
	margin-bottom: 5px;
	display: inline-block;
	color: var(--color-main);
}

.menu-section .menu-title + .sub-menu {
	padding-top: 5px;
	padding-bottom: 5px;
}

.menu-section .menu-link {
	color: var(--color-text);
	padding: 7px 35px 7px 0px;
	display: block;
}

.menu-container nav.menu-section>ul {
	display: flex;
}

/*.menu-section .active {*/
/*	color: var(--color-hightlight) !important;*/
/*}*/

.menu-section .child-indicator {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.menu-section .menu-image.right {
	margin: -20px -35px -15px -5px;
}

.menu-section .menu-image.left {
	margin: -20px 0px -20px -35px;
}

.menu-section > ul > li {
    display: inline-block;
    padding: 0 5px;
    flex: auto;
}


.menu-section > ul > li:hover > .entry-menu {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}

.menu-section > ul > li:hover > .entry-menu .tabs-item.active > .sub-menu {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
}

.menu-section > ul > li > .entry-menu {
	position: absolute;
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
	-webkit-transition: opacity 0.05s ease;
	transition: opacity 0.05s ease;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	-o-transform: translateY(20px);
	transform: translateY(20px);
}

.menu-section > ul > li > .entry-menu li {
	text-align: left;
}

.menu-section > ul > li:last-child {
	margin-right: 0px;
}

.menu-section > ul > li > a {
    line-height: 45px;
    height: 45px;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
}

.menu-section > ul > li > a span {
	display: none;
}

.menu-section > ul > li.has-child > a {
	display: inline-block;
}

.menu-section > ul > li.has-child > a span {
	display: inline-block;
	font-size: 12px;
	margin-left: 3px;
}

footer {
	background-color: var(--color-main);
    border-top: 1px solid #9a9a9a;
}

.entire-info-website .logo-section {
	margin-bottom: 15px;
}

.entire-info-website .descript-website-section {
	margin-bottom: 44px;
}

.entire-info-website address p {
	margin-bottom: 10px;
}

.entire-info-website address p i {
	font-size: 20px;
	width: 30px;
}

.entire-info-website .title-social-footer {
	color: var(--color-main);
	margin-bottom: 30px;
}

.social-footer-section {
	margin-bottom: 30px;
}

.social-footer-section ul {
	margin: 0;
}

.social-footer-section ul li {
	margin-right: 7px;
	display: inline-block;
}

.social-footer-section ul li a {
	display: block;
	font-size: 18px;
	text-align: center;
	line-height: 1;
}

.social-footer-section ul li a:hover {
	color: var(--color-main);
}

.title-footer {
	color: var(--color-main);
	text-transform: capitalize;
	font-weight: 600;
	margin-bottom: 15px;
}

.work-time .inner-time p {
	margin-bottom: 7px;
}

.work-time span {
	margin-bottom: 7px;
	display: inline-block;
}

.coppyright-payment .coppyright {
	margin-bottom: 0;
}

.toolbar-section {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 6px 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--white);
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	z-index: 1120;
}

.toolbar-section .toolbar-item {
	flex: 1 0 25%;
}

.toolbar-section .toolbar-item a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: inherit;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 24px;
}

.toolbar-section .toolbar-item a i {
	font-size: 24px;
}

.toolbar-section .toolbar-item a span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 0;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
}

/* Page */
.article-item .inner-image .featured-media {
	position: absolute;
	top: 9px;
	right: 10px;
	z-index: 1;
}

.article-item .inner-image .featured-media span {
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 20px;
	background-color: rgba(255, 255, 255, 0.5);
	color: var(--color-main);
	margin: 0px 2px;
	display: inline-block;
}

.article-item .article-info .article-category {
	display: inline-block;
	margin-right: 15px;
}

.article-item .article-info .article-category a {
	color: var(--color-hightlight);
	font-weight: 600;
	line-height: 26px;
	text-transform: uppercase;
}

.article-item .article-info .article-category a:last-child .comma-item {
	display: none;
}

.article-item .article-info .article-category a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.article-item .article-info .post-date, .article-item .article-info .post-author {
	position: relative;
	display: inline-block;
	font-size: 13px;
	line-height: 26px;
	padding-left: 15px;
	margin-right: 15px;
}

.article-item .article-info .post-date::before, .article-item .article-info .post-author::before {
	content: '';
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	background-color: var(--color-text);
	height: 5px;
	width: 5px;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.article-item .article-info .post-author:hover {
	color: var(--color-text);
	text-decoration: underline;
}

.article-item .article-title {
	line-height: 24px;
	font-weight: 600;
}

.article-item .article-title a {
	color: var(--color-main);
}

.article-item .article-title a:hover {
	text-decoration: underline;
}

.article-item .article-description {
	margin-bottom: 10px;
}

.article-entry-info {
	font-size: 12px;
	margin-bottom: 9px;
}

.article-entry-info > span {
	margin-right: 6px;
}

.article-entry-info .article-category {
	margin-right: 15px;
}

.article-entry-info .article-category a {
	font-weight: 600;
	line-height: 26px;
	text-transform: uppercase;
}

.article-entry-info .article-category a:last-child .comma-item {
	display: none;
}

.article-entry-info .article-category a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.album-item .inner-image {
	margin-bottom: 21px;
}

.album-item .album-info .album-category {
	display: inline-block;
	margin-right: 15px;
}

.album-item .album-info .album-category a {
	color: var(--color-hightlight);
	font-weight: 600;
	line-height: 26px;
	text-transform: uppercase;
}

.album-item .album-info .album-category a:last-child .comma-item {
	display: none;
}

.album-item .album-info .album-category a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.album-item .album-info .post-date, .album-item .album-info .post-author {
	position: relative;
	display: inline-block;
	font-size: 13px;
	line-height: 26px;
	padding-left: 15px;
	margin-right: 15px;
}

.album-item .album-info .post-date::before, .album-item .album-info .post-author::before {
	content: '';
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	background-color: var(--color-text);
	height: 5px;
	width: 5px;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.album-item .album-info .post-author:hover {
	color: var(--color-text);
	text-decoration: underline;
}

.album-item .album-title {
	line-height: 24px;
	font-weight: 600;
}

.album-item .album-title a {
	color: var(--color-main);
}

.album-item .album-title a:hover {
	text-decoration: underline;
}

.album-item .album-description {
	margin-bottom: 20px;
}

.album-entry-info {
	font-size: 12px;
	margin-bottom: 9px;
}

.album-entry-info > span {
	margin-right: 6px;
}

.album-entry-info .album-category {
	margin-right: 15px;
}

.album-entry-info .album-category a {
	font-weight: 600;
	line-height: 26px;
	text-transform: uppercase;
}

.album-entry-info .album-category a:last-child .comma-item {
	display: none;
}

.album-entry-info .album-category a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.read-more {
	font-weight: 700;
	color: var(--color-main);
	text-transform: uppercase;
	font-size: 12px;
}

.view-small .article-item {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e3e3e3;
}

.view-small article .article-item-left {
    flex: 0 0 30%;
    max-width: 30%;
}

.view-small article .article-item-right {
    flex: 0 0 70%;
    max-width: 70%;
}

.view-small .article-item .inner-image {
    margin-bottom: 0;
    margin-right: 0;
    padding-top: 57.2%;
}

.view-small .article-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.view-small .article-item .article-title {
	margin-bottom: 5px;
}

.view-small .article-item .article-title a {
	line-height: 1.3;
	display: block;
	font-size: 14px;
}

.view-small .article-item .article-title a:hover {
	text-decoration: none;
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.view-small .article-entry-info {
	margin-bottom: 0;
}

.article-content iframe, .article-content video, .article-content img, .article-content table {
	max-width: 100%;
}

.article-title-detail {
	color: var(--color-main);
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
}

.article-content img, .article-content iframe, .article-content video {
	max-width: 100%;
	height: auto;
}

.product-additional-action {
	position: absolute;
	bottom: 15px;
	left: 35px;
}

.product-additional-action .btn-addition-action {
	display: block;
	height: 45px;
	width: 45px;
	margin-top: 10px;
	position: relative;
	background-color: var(--white);
	cursor: pointer;
}

.product-additional-action .btn-addition-action::before {
	content: '';
	height: 28px;
	width: 28px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.product-additional-action .btn-addition-action.btn-video::before {
	background: url("../img/video-player.svg") no-repeat top left;
	background-size: contain;
}

.product-additional-action .btn-addition-action.btn-video.youtube-video::before {
	background: url("../img/youtube-logo.svg") no-repeat top left;
	background-size: contain;
}

.product-additional-action .btn-addition-action.btn-360-view::before {
	background: url("../img/3d.svg") no-repeat top left;
	background-size: contain;
}

.product-additional-action .btn-addition-action.btn-expand::before {
	background: url("../img/full-screen.svg") no-repeat top left;
	background-size: contain;
}

.product-additional-action .btn-addition-action:hover {
	filter: invert(1);
	-webkit-filter: invert(1);
}

.product-attribute-switch {
		padding: 0;
}

.product-attribute-switch.image-switch .inner-product-attribute {
	/*height: 34px;*/
	width: 34px;
	/*line-height: 40px;*/
	margin: 0px 7px;
}

.product-attribute-switch.text-switch .inner-product-attribute:not(.inner-attr), .product-attribute-switch.image-switch .inner-product-attribute:not(.inner-attr) {
	min-height: 40px;
	width: 49%;
	padding: 0px 5px;
	padding-left: 30px;
	margin: 0;
	border-radius: 5px !important;
	display: block;
	background: var(--light);
	font-weight: 600;
	border-color: var(--color-main);
}

.product-attribute-switch li.active a.inner-product-attribute::before {
	content: '';
	position: absolute;
	display: block;
	right: 0;
	bottom: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 12px 12px;
	border-color: transparent transparent var(--color-main);
}

.product-attribute-switch li.active a.inner-product-attribute::after {
	content: '\ec32';
	position: absolute;
	display: block;
	font-family: "iconsax";
	font-weight: 900;
	font-size: 6px;
	line-height: 1;
	color: var(--white);
	bottom: 0;
	right: 1px;
}

.product-attribute-switch .inner-product-attribute {
	position: relative;
	margin: 4px;
	text-align: left;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-clip: padding-box;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border: 1px solid #b8b7bd;
	cursor: pointer;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.product-attribute-switch .inner-product-attribute:hover {
	border-color: var(--color-main);
}

.product-attribute-switch .inner-product-attribute.active {
	background-color: var(--color-main) !important;
	color: var(--white) !important;
}

.product-content-detail .entire-attribute .list-attribute .reset-attribute::before ,.product-content-detail .entire-attribute .list-attribute .reset-attribute:after {
	display: none;
}

.product-content-detail .entire-attribute .list-attribute .reset-attribute {
	border: 0;
	font-weight: normal;
}

.product-attribute-switch.image-switch .inner-product-attribute.active {
	border: 1px solid var(--color-main);
}

.product-attribute-switch.image-switch .inner-product-attribute.active::before {
	display: none;
}

.product-attribute-switch .inner-product-attribute.disable {
	opacity: 0.3;
	cursor: not-allowed;
}

.reset-attribute {
	margin-left: 30px;
	color: var(--color-main);
	font-weight: 600;
	border-bottom: 1px solid #b8b7bd;
	position: relative;
}

.product-content-detail .entire-attribute .list-attribute .reset-attribute::before {
    /*content: '\f00d';
    font-family: "Line Awesome Free";*/
	font-size: 15px;
	position: absolute;
	right: -20px;
	top: 0;
	color: var(--color-main);
}

.reset-attribute:hover {
	color: var(--color-main);
}

.product-tab.nav {
	margin-bottom: 40px;
	position: relative;
}

.product-tab.nav .nav-item .nav-link {
	font-size: 15px;
	line-height: 27px;
	color: #BEBEBE;
}

.product-tab.nav .nav-item .nav-link.active {
	color: var(--black);
	font-weight: 600;
}

.tab-content {
	position: relative;
}

.tab-content img, .tab-content iframe, .tab-content video {
	max-width: 100%;
}

.countdown-timer {
	display: flex;
	justify-content: flex-start;
	margin: 0 -4px 5px;
}

.countdown-timer > div {
	height: 50px;
	width: 50px;
	text-align: center;
	border: 1px solid #e6e6e6;
	border-radius: 4px;
	margin-left: 4px;
	margin-right: 4px;
	font-weight: 600;
	color: var(--color-main);
}

.countdown-timer > div span {
	display: block;
	font-weight: 400;
}

.product-status {
	position: absolute;
	top: 7px;
	left: 7px;
	z-index: 11;
	pointer-events: none;
}

.out-stock, .onsale, .featured {
	max-width: 100px;
	display: block;
	text-align: center;
	color: var(--white);
	line-height: 32px;
	margin-bottom: 5px;
	height: 32px;
	width: 60px;
	border-radius: 5px;
	background-color: var(--color-hightlight);
}

.out-stock {
	background-color: var(--black);
}

.featured {
	background-color: var(--color-hightlight);
}

.product-category-section > div {
	height: 530px;
}

.product-category-section .inner-product-cat {
	display: block;
	position: relative;
	height: 100%;
}

.product-category-section .inner-product-cat span.inner-image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transform-origin: right bottom;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.product-category-section .inner-product-cat.half-height {
	height: calc(100% / 2 - 15px);
}

.product-category-section .inner-product-cat.half-height:first-child {
	margin-bottom: 30px;
}

.product-category-section .inner-product-cat .inner-content {
	pointer-events: none;
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	bottom: 30px;
	right: 25px;
}

.product-category-section .inner-product-cat .inner-content .category-title {
	font-size: 30px;
	font-weight: 700;
	color: var(--color-main);
}

@media (max-width: 991px) {
	.product-category-section .inner-product-cat .inner-content .category-title {
		font-size: 26px;
		line-height: 30px;
	}
}

.product-category-section .inner-product-cat .inner-content .category-count {
	color: var(--color-text);
}

.currency-symbol {
	margin-left: 3px;
	font-size: 75%;
}

.product-action {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 20;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
}

.product-action .btn-product-action:hover {
	background-color: var(--color-main);
	color: var(--white);
}

.product-action .btn-product-action {
	margin-right: 4px;
	margin-left: 4px;
	display: inline-block;
	position: relative;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 18px;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	-webkit-box-shadow: 1px 1px 2px rgb(0 0 0 / 10%);
	-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 1px 2px rgb(0 0 0 / 10%);
	background-color: var(--white);
}

.product-item {
	margin-bottom: 20px;
}

.product-item .inner-image {
	position: relative;
	margin-bottom: 15px;
	overflow: hidden;
}

.product-item .inner-content .product-category a {
	font-size: 13px;
}

.product-item .inner-content .product-category a:last-child .comma-item {
	display: none;
}

.product-item .inner-content .product-category a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.product-item .inner-content .product-title a {
	color: var(--color-main);
	font-weight: 600;
	font-size: 14px;
}

.product-item .inner-content .product-title a:hover {
	text-decoration: underline;
}

.product-item .inner-content .product-rating-price {
	height: 22px;
	line-height: 22px;
	overflow: hidden;
}

.product-item .inner-content .product-rating-price .wrp-rating-price {
	height: 44px;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: transform 0.25s ease-in-out;
	transition: transform 0.25s ease-in-out;
}

.product-item:hover .product-action {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
	bottom: 30px;
}

.product-item:hover .inner-content .product-rating-price .wrp-rating-price {
	-webkit-transform: translateY(-22px);
	-ms-transform: translateY(-22px);
	-o-transform: translateY(-22px);
	transform: translateY(-22px);
}

.price-amount {
	font-weight: 700;
	font-size: 16px;
	color: #e50000;
	white-space: nowrap;
}

.price-amount.old-price {
	color: var(--color-text);
	font-weight: 400;
	margin-left: 8px;
	position: relative;
}

.price-amount.old-price::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 0.5px;
	background-color: var(--color-text);
	width: 100%;
}

.view-small .product-item {
	margin-bottom: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid #e3e3e3;
}

.view-small .product-item .inner-image {
	float: left;
	margin-right: 20px;
	margin-bottom: 0;
}

.view-small .product-item .inner-image img {
	max-width: 80px;
}

.view-small .product-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.view-small .product-item .inner-content .product-title {
	margin-bottom: 2px;
}

.view-small .product-item .inner-content .product-title a:hover {
	text-decoration: none;
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.view-small .product-item .inner-content .price-amount {
	font-size: 14px;
}

.view-small .product-item .inner-content .price > span {
	display: inline-block;
	padding: 0 3px;
}

.view-small .product-item .inner-content .price > span.price-amount.old-price {
	margin-left: 0;
}

.quickview-close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 16px;
	z-index: 1000;
}

.quickview-info {
	position: relative;
	height: 530px;
	overflow: auto;
	padding: 50px 50px 50px 30px;
}

.quickview-info::-webkit-scrollbar {
	width: 6px;
}

.quickview-info::-webkit-scrollbar-thumb {
	border-radius: 8px;
	background: #e6e6e6;
}

.quickview-info::-webkit-scrollbar-track {
	border-radius: 8px;
}

.product-detail-head .product-image-detail .inner-image {
	padding-top: 100%;
}

.product-detail-footer {
	margin-top: 80px;
	margin-bottom: 80px;
}

.product-detail-footer iframe, .product-detail-footer video, .product-detail-footer img, .product-detail-footer table {
	max-width: 100%;
}

.product-detail-footer .nav {
	margin-bottom: 30px;
	border-bottom: 1px solid #e3e3e3;
}

.product-detail-footer .nav li {
	margin-right: 60px;
}

.product-detail-footer .nav li a {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0 0 20px;
	position: relative;
}

.product-detail-footer .nav li a::before {
	content: '';
	display: block;
	position: absolute;
	width: 0;
	height: 1px;
	left: 0;
	bottom: 0px;
	background-color: var(--color-main);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.product-detail-footer .nav li a.active::before {
	width: 100%;
}

.product-image-detail .owl-carousel::before, .product-image-detail .owl-carousel::after {
	content: none;
}

.product-image-detail .owl-carousel .owl-prev {
	left: 0px;
}

.product-image-detail .owl-carousel .owl-next {
	right: 0px;
}

.product-image-detail .owl-carousel i {
	font-size: 32px;
	color: rgba(0, 0, 0, 0.8);
}

.product-image-detail .owl-carousel i:hover {
	color: var(--black);
}

.product-image-detail:hover .owl-nav i {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
}

.product-image-detail:hover .owl-nav .owl-prev {
	left: 15px;
}

.product-image-detail:hover .owl-nav .owl-next {
	right: 15px;
}

.product-image-detail .slick-list, .product-image-detail .slick-slide {
	margin: 0;
}

.product-image-detail .inner-image img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.product-image-detail .inner-iframe iframe {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.product-image-detail .inner-video video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.product-content-detail .product-title-detail {
	font-weight: 700;
	color: var(--color-main);
	font-size: 24px;
	margin-bottom: 5px;
}

.product-content-detail .product-rating .star-rating {
	margin-right: 15px;
}

.product-content-detail .product-description {
	margin-bottom: 21px;
}

.product-content-detail .product-description p {
	margin-bottom: 5px;
}

.product-content-detail .price {
	margin-bottom: 5px;
}

.product-content-detail .price .price-amount {
	font-size: 24px;
	font-weight: 700;
}

.product-content-detail .price .price-amount.old-price {
	font-size: 18px;
	font-weight: 400;
	color: var(--color-text);
	text-decoration: line-through;
	margin-right: 15px;
	margin-left: 0;
}

.product-content-detail .product-category a {
	font-size: 13px;
	color: var(--color-text);
	margin-left: 5px;
}

.product-content-detail .product-category a:last-child .comma-item {
	display: none;
}

.product-content-detail .product-category a:hover {
	color: var(--color-hightlight);
}

.product-content-detail .product-meta > div {
	margin-bottom: 6px;
}

.product-content-detail .product-meta > div:last-child {
	margin-bottom: 0;
}

.product-content-detail .code span, .product-content-detail .brand span, .product-content-detail .weight span, .product-content-detail .length span, .product-content-detail .width span, .product-content-detail .height span {
	margin-left: 5px;
}

.product-content-detail .entire-attribute {
	margin-bottom: 20px;
}

.product-content-detail .entire-attribute>.row {
	margin: 0 -5px;
}

.product-content-detail .entire-attribute .list-attribute:not(.no-padding) {
	margin-bottom: 10px;
	padding: 0 10px;
}

.product-content-detail .entire-attribute .list-attribute label {
	margin: 0;
	font-weight: 500;
}

.product-content-detail .entire-attribute .list-attribute .product-attribute-switch {
	margin-bottom: 0;
}

.product-content-detail .entire-attribute .list-attribute .product-attribute-switch .form-check-input {
	margin: 0;
	margin-right: 9px;
	z-index: 9;
	left: 10px;
}

.product-content-detail .add-to-cart {
	color: var(--white);
	font-weight: 700;
	width: 100%;
	text-align: center;
	display: inline-block;
	padding: 10px 0 11px;
	background: var(--color-hightlight);
}

.quantity-buy .btn-cart-buy a.add-to-cart.add-to-cart-buy {
	background: var(--color-main);
}

.product-content-detail .add-to-cart:hover {
	background-color: var(--color-hightlight);
}

.product-content-detail .add-to-cart.disable {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
	-webkit-user-select: none;
    /* Chrome all / Safari all */
	-moz-user-select: none;
    /* Firefox all */
	-ms-user-select: none;
    /* IE 10+ */
	user-select: none;
}

.product-content-detail .out-of-stock {
	font-weight: 600;
	color: var(--color-hightlight);
	text-transform: capitalize;
	height: 44px;
	line-height: 44px;
}

.product-content-detail .btn-compare {
	font-weight: 600;
	margin-top: 10px;
	display: inline-block;
	color: var(--color-main);
}

.product-content-detail .btn-compare i {
	margin-right: 5px;
}

.product-content-detail .btn-compare:hover {
	color: var(--color-hightlight);
}

.product-quantity {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 25px;
	color: var(--color-main);
	float: left;
}

.product-quantity .btn-quantity {
	cursor: pointer;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.product-quantity .btn-quantity:hover {
	color: var(--color-hightlight);
}

.product-quantity input {
	font-size: 18px;
	width: 50px;
	height: 44px;
	border: none;
	background-color: transparent;
}

.social-share .share-title {
	margin-right: 15px;
}

.social-share .list-social .btn-social {
	float: left;
	margin: 0 4px;
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.social-share .list-social .btn-social:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.social-share .list-social .btn-social.facebook-icon {
	background-color: #365493;
}

.social-share .list-social .btn-social.twitter-icon {
	background-color: #3cf;
}

.social-share .list-social .btn-social.google-icon {
	background-color: #d44132;
}

.social-share .list-social .btn-social.pinterest-icon {
	background-color: #cb2027;
}

.social-share .list-social .btn-social.linkedin-icon {
	background-color: #0274b3;
}

.social-share .list-social .btn-social a {
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	display: inline-block;
}

.sidebar-mini-cart {
	position: fixed;
	display: flex;
	flex-direction: column;
	top: 0;
	bottom: 0;
	right: 0;
	width: 460px;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 1030;
	background-color: #F5F5F5;
	-webkit-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
	box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
	-webkit-transform: translate3d(460px, 0, 0);
	-moz-transform: translate3d(460px, 0, 0);
	-ms-transform: translate3d(460px, 0, 0);
	-o-transform: translate3d(460px, 0, 0);
	transform: translate3d(460px, 0, 0);
	-webkit-transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
	transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
}

.sidebar-mini-cart.open {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-overflow-scrolling: touch;
}

.sidebar-mini-cart .sidebar-header {
	text-align: left;
}

.sidebar-mini-cart .sidebar-header .close-sidebar {
	font-size: 30px;
	color: var(--color-main);
}

.sidebar-mini-cart .content-mini-cart {
	flex: 1 1 auto;
	display: flex;
	position: relative;
}

.sidebar-mini-cart .content-mini-cart .entire-bottom-minicart {
	margin-top: auto;
}

.sidebar-mini-cart .content-mini-cart .cart-item {
	position: relative;
	padding: 5px 5px;
	background: var(--white);
	margin: 10px 0;
	border-radius: 5px;
}

.sidebar-mini-cart .content-mini-cart .remove-mini-cart {
	position: absolute;
	top: 30px;
	right: 5px;
	font-size: 16px;
	cursor: pointer;
	width: 25px;
	text-align: center;
}

.sidebar-mini-cart .content-mini-cart .remove-mini-cart:hover i {
	color: var(--color-hightlight);
}

.sidebar-mini-cart .content-mini-cart .inner-image img {
	width: 90px;
	float: left;
	margin-right: 20px;
	border: 1px solid #e3e3e3;
}

.sidebar-mini-cart .content-mini-cart .inner-content {
	margin-left: 110px;
}

.sidebar-mini-cart .content-mini-cart .inner-content .product-title {
	font-weight: 700;
	padding-right: 30px;
	display: block;
	color: var(--color-main);
	margin-bottom: 6px;
}

.sidebar-mini-cart .content-mini-cart .inner-content .attr-product {
	line-height: 20px;
	height: 20px;
}

.sidebar-mini-cart .content-mini-cart .inner-content .attr-product label, .sidebar-mini-cart .content-mini-cart .inner-content .attr-product p {
	float: left;
}

.sidebar-mini-cart .content-mini-cart .inner-content .attr-product label {
	font-weight: 400;
	color: var(--color-main);
	margin-bottom: 0;
}

.sidebar-mini-cart .content-mini-cart .inner-content .attr-product p {
	margin-bottom: 0;
	font-weight: 700;
	color: #390;
	margin-left: 5px;
}

.sidebar-mini-cart .content-mini-cart .inner-content .quantity {
	color: var(--color-main);
}

.sidebar-mini-cart .content-mini-cart .inner-content .quantity .price-amount {
	font-weight: 700;
}

.sidebar-mini-cart .content-mini-cart .total-price {
	padding-top: 20px;
}

.sidebar-mini-cart .content-mini-cart .total-price label {
	font-size: 16px;
	margin-bottom: 0;
	font-weight: 700;
}

.sidebar-mini-cart .content-mini-cart .total-price .price-amount {
	margin-bottom: 0;
	float: right;
	font-size: 22px;
	font-weight: 700;
}

.sidebar-mini-cart .content-mini-cart .mini-cart-btn {
	padding-top: 10px;
	padding-bottom: 65px;
}

.sidebar-mini-cart .content-mini-cart .mini-cart-btn .btn-checkout {
	display: block;
	font-weight: 700;
	padding: 14px 0;
	margin-top: 20px;
	background: var(--color-hightlight);
}

.sidebar-mini-cart .content-mini-cart .mini-cart-btn .btn-cart-info {
	display: block;
	font-weight: 700;
	padding: 14px 0;
	background-color: transparent;
	border: 1px solid var(--color-main);
	color: var(--color-main);
}

.sidebar-mini-cart .content-mini-cart .mini-cart-btn .btn-cart-info:hover {
	color: var(--color-hightlight);
	border-color: var(--color-hightlight);
}

.sidebar-mini-cart .content-mini-cart .box-minicart {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.sidebar-mini-cart::-webkit-scrollbar {
	width: 6px;
}

.sidebar-mini-cart::-webkit-scrollbar-thumb {
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
	background: #e6e6e6;
}

.sidebar-mini-cart::-webkit-scrollbar-track {
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
	-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.active-quick-shop .product-quick-shop {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.product-quick-shop {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(249, 249, 249, 0.97);
	-webkit-transform: translateY(-101%);
	-ms-transform: translateY(-101%);
	-o-transform: translateY(-101%);
	transform: translateY(-101%);
	-webkit-transition: all 0.35s cubic-bezier(0.65, 0.05, 0.51, 0.82);
	transition: all 0.35s cubic-bezier(0.65, 0.05, 0.51, 0.82);
	z-index: 50;
	overflow-x: hidden;
	overflow-y: auto;
	text-align: center;
}

.product-quick-shop .quick-shop-close {
	position: absolute;
	top: 5px;
	right: 5px;
	font-size: 15px;
	color: var(--color-main);
	cursor: pointer;
}

.product-quick-shop::-webkit-scrollbar {
	width: 6px;
}

.product-quick-shop::-webkit-scrollbar-thumb {
	border-radius: 8px;
	background: #e6e6e6;
}

.product-quick-shop::-webkit-scrollbar-track {
	border-radius: 8px;
}

.entry-quick-shop {
	height: 100%;
	width: 100%;
	padding: 20px 10px 10px;
}

.entry-quick-shop .product-attribute-switch {
	margin-bottom: 5px;
}

.entry-quick-shop .product-quantity {
	margin-right: 0;
}

.entry-quick-shop .product-quantity input {
	height: 32px;
}

.entry-quick-shop .product-quantity .btn-quantity {
	line-height: 32px;
}

.entry-quick-shop .reset-attribute {
	margin-left: 0;
}

.entry-quick-shop label {
	font-weight: 600;
	margin-bottom: 2px;
}

.entry-quick-shop .add-to-cart {
	display: inline-block;
	margin-top: 8px;
	height: 34px;
	width: 34px;
	font-size: 20px;
	background-color: var(--color-hightlight);
	text-align: center;
	line-height: 34px;
	color: var(--white);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.entry-quick-shop .add-to-cart.disable {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
	-webkit-user-select: none;
      /* Chrome all / Safari all */
	-moz-user-select: none;
      /* Firefox all */
	-ms-user-select: none;
      /* IE 10+ */
	user-select: none;
}

.entry-quick-shop .entire-attribute {
	margin-bottom: 5px;
}

.entry-quick-shop .added_to_cart i::before {
	content: '\ebef';
}

.entry-quick-shop .out-of-stock {
	font-weight: 600;
	color: var(--color-hightlight);
	text-transform: capitalize;
	line-height: 76px;
}

.per-page-title {
	font-weight: 600;
	color: var(--color-main);
}

.per-page-variation {
	padding: 0 7px;
}

.per-page-variation.active {
	color: var(--color-main);
	font-weight: 600;
}

.orderby-section .dropdown.show .orderby-title::after {
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.orderby-section .orderby-title {
	display: block;
	padding-right: 45px;
	position: relative;
	cursor: pointer;
	color: var(--color-main);
	font-weight: 600;
}

.orderby-section .orderby-title::after {
    content: "\f107";
    position: absolute;
    font-family: "Line Awesome Free";
    top: 0;
    right: 0;
    font-weight: 900;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.orderby-section .dropdown-item {
	padding-top: 0;
	padding-bottom: 0;
	line-height: 40px;
	height: 40px;
}

.orderby-section .dropdown-item.active {
	font-weight: 600;
	background-color: #f6f6f6;
	color: var(--color-main);
}

.orderby-section .dropdown-menu {
	margin: 0;
	padding: 0;
}

.filter-section {
	padding-left: 0;
	list-style: none;
}

.filter-section li {
	margin-bottom: 15px;
	flex: 0 0 33.33%;
	max-width: 33.33%;
}

.filter-section li .inner-switch > span {
	width: 15px;
	height: 15px;
	margin-right: 10px;
	display: block;
	position: relative;
	border: 1px solid #e3e3e3;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.filter-section li .inner-switch.circle > span {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.filter-section li > a {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	margin: 6px 0;
}

.filter-section li > a:hover {
	color: var(--color-main);
}

.filter-section li > a:hover .inner-switch > span {
	background-color: transparent !important;
}

.filter-section li > a:hover .inner-switch > span::after {
	content: "\ec32";
	font-family: "iconsax";
	font-weight: 900;
	position: absolute;
	top: 0px;
	left: 0;
	line-height: 1;
}

.filter-section li > a.active .inner-name {
	color: var(--white);
}

.filter-section li > a.active .inner-switch > span {
	background-color: transparent !important;
}

.filter-section li > a.active .inner-switch > span::after {
	content: "\ec32";
	font-family: "iconsax";
	font-weight: 900;
	position: absolute;
	top: 0px;
	left: 0;
	line-height: 1;
}

.filter-section.filter-inline {
	display: flex;
	align-items: center;
}

.dropdown-item.active, .dropdown-item:active {
	background-color: var(--light);
	color: var(--color-main);
}

.cart-drop-botoom .card-body {
	background: var(--light);
}

.card {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 1px solid rgba(0,0,0,.125);
	border-radius: 0.25rem;
}

.card-body {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1.25rem;
}
/*header-top*/
body.is-mobile {
	font-size: 14px;
}

.sale_top h2 {
	margin: 0;
	font-size: 55px;
	line-height: 100%;
}

.sale_top h2 span {
	font-weight: 900;
	color: var(--color-top);
	text-shadow: -2px 0px #efefef;
	font-size: 63px;
	font-family: 'Montserrat';
}

.sale_top h2 a {
	color: var(--white);
}

.sale_top p {
	color: var(--white);
	margin-bottom: 0;
	font-size: 18px;
}

.sale_top {
	text-align: center;
}

.hour {
	font-size: 25px;
	background: #ed1b2400;
	border-radius: 13px;
	padding: 10px 0;
	min-width: 60px;
	width: auto;
	margin: 0 15px;
	text-align: center;
	position: relative;
	color: var(--white);
	font-weight: 400;
	border: 1px solid var(--white);
	height: 60px;
	line-height: 25px;
}

span#time_sale {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	margin: 0 -15px;
}

span#time_sale p span {
	display: block;
	font-size: 16px;
}

.top_header_text span#time_sale p {
	display: block;
	height: 65px;
	width: 65px;
}

.header-top>.container>.row {
	display: flex;
	align-items: center;
}

.top_header_text>p {
	margin-bottom: 0;
}

.shop_now a {
	font-size: 39px;
	color: var(--white);
	line-height: 70px;
}

/*header main*/
.form-search {
	width: 100%;
}

.form-search .input-group input {
	height: 46px;
	width: 100%;
	padding-left: 57px;
	border-radius: 5px !important;
	border-color: var(--color-main) !important;
	background: #fff;
}

.form-search .input-group .input-group-append button.btn.btn-submit {
	height: 46px;
	background: none;
	padding: 0 15px !important;
	z-index: 5;
}

.form-search .input-group .input-group-append {
	margin-left: 0;
	position: absolute;
	left: 0;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

/*dich vu*/

a.policy-list-item .icon img {
	width: 42px;
	object-fit: contain;
	height: 42px;
}

.policy-list-label {
	height: 45px;
	line-height: 26px;
}

/*banner*/
.section-man-bannr {
	height: 49vw;
	max-height: 49vw;
}

.section-man-bannr>.container {
	height: 100%;
}

.section-man-bannr .title-man {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.section-man-bannr .title-man .title-top {
	font-size: 33px;
}

.section-man-bannr .title-man .title-center {
	font-size: 71px;
	line-height: 115%;
}

.section-man-bannr .title-man .btn-seemore {
	font-size: 16px;
}

.section-man-bannr .title-man .btn-seemore:before, .product-hot .product-hot-left .product-item .inner-content .product-rating-price:before {
	position: absolute;
	top: 50%;
	width: 50px;
	height: 2px;
	background: var(--black);
	content: '';
	left: 3px;
	transform: translateY(-50%);
}

/*product sale*/
span#time_sale_right p:last-child:before {
	display: none;
}

span#time_sale_right p.hour {
	background: var(--black);
	float: left;
	height: 50px;
	width: 50px;
	border-radius: 4px;
	padding: 0 !important;
	line-height: 50px;
	font-size: 24px;
	position: relative;
	min-width: auto;
}

span#time_sale_right p.hour:before {
	content: ":";
	position: absolute;
	color: #000;
	right: -19px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 600;
}

#time_sale_right {
	margin: 0 -15px;
	display: block;
	position: relative;
}

.title_sale .title-section {
	color: red;
}

.product-item .inner-image .btn-love a {
	position: absolute;
	top: 7px;
	right: 7px;
	z-index: 1;
	display: inline-block;
	width: 30px;
	height: 30px;
	background: var(--white);
	text-align: center;
	line-height: 30px;
	border-radius: 6px;
	font-size: 20px;
	z-index: 12;
}

.product-tab.nav .nav-item .nav-link.active::after {
	display: none;
}

ul.pagination li.page-item {
	margin: 0px 10px;
	position: relative;
}

ul.pagination li.page-item .page-link {
	border: 0;
	height: 24px;
	width: 24px;
	line-height: 24px;
	padding: 0;
	text-align: center;
	font-weight: 600;
	opacity: 1;
	color: var(--black);
	border-radius: 50%;
}

ul.pagination li.page-item .page-link i {
	vertical-align: middle;
}

ul.pagination li.page-item.active .page-link {
	background: var(--black);
	color: var(--white);
}

ul.pagination li.page-item:first-child:before {
	width: 50px;
	height: 2px;
	position: absolute;
	content: '';
	left: -63px;
	background: var(--black);
	transform: translateY(-50%);
	top: 50%;
}

ul.pagination li.page-item:last-child:before {
	width: 50px;
	height: 2px;
	position: absolute;
	content: '';
	right: -63px;
	background: var(--black);
	transform: translateY(-50%);
	top: 50%;
}

.product-hot .product-hot-left .product-item .inner-image {
	padding-top: 122.5%;
}

.product-hot .product-hot-left .product-item .inner-content {
	position: absolute;
	left: 50px;
	top: 70%;
	z-index: 12;
	border-top: 0;
}

.product-hot .product-hot-left .product-item .inner-content .product-title a {
	font-size: 45px;
}

.form-get-more-deals .content-form .form-group {
	flex: 0 0 80%;
}

.form-get-more-deals .content-form .form-group:last-child {
	flex: 0 0 20%;
}

.form-get-more-deals .content-form .form-group:last-child span.btn {
	background: var(--black);
	height: 42px;
	padding: 0;
	border-radius: 0 !important;
	line-height: 42px;
}

.form-get-more-deals .content-form .form-group input {
	height: 42px;
	border-radius: 0 !important;
	border: 1px solid #000 !important;
}

.product-padding-right .title-section span {
	font-size: 16px;
	font-weight: normal;
}

.product-padding-right .inner-image .rounded {
	border-radius: 12px !important;
}

.sidebar-mini-cart .title-top-cart {
	border-bottom: 1px solid #ddd;
	margin-bottom: 5px;
}

.sidebar-mini-cart .content-mini-cart .mini-cart-btn a {
	height: 52px;
	line-height: 52px !important;
	border-radius: 5px;
	max-width: 280px;
	margin: 0 auto;
	width: 100%;
}

.product-item .inner-image .btn-love a.btn-product-action.added-wishlist {
	background: var(--color-hightlight);
	color: #fff;
}

.icon_menu_tab .link_show, .sort-right .dropdown span.orderby-title {
	height: 36px;
	width: 180px;
	border-radius: 5px;
}

.list-cart-item table.table.cart-info-section>thead>tr>th {
	background: none;
	color: var(--black);
	font-weight: 600;
	border: 0;
	padding: 10px 0;
}

.list-cart-item table.table.cart-info-section>tbody>tr>th, .list-cart-item table.table.cart-info-section>tbody>tr>td {
	border: 0;
}

.list-cart-item .responsive-table tbody tr:nth-of-type(even) {
	background: none;
}

.list-cart-item table.table.cart-info-section>thead {
	border-bottom: 1px solid #ddd;
}

.bg-white.cart-item-center .cart-info-section tbody .item-quantity .product-quantity {
	border: 0;
	padding: 0 !important;
}

.bg-white.cart-item-center .cart-info-section tbody .item-quantity .product-quantity .btn-quantity {
	font-size: 19px;
}

.bg-white.cart-item-center .cart-info-section tbody .item-quantity .quantity-input {
	width: 30px;
	padding: 0;
	height: 28px;
	margin: 0;
	margin-bottom: 4px;
	font-size: 17px;
	font-weight: 600;
}

.cart-item-center .cart-info-section>tbody>tr.cart_item {
	border-bottom: 1px dashed #707070;
}

.cart-item-center .cart-info-section>tbody>tr.cart_item>td, .cart-item-center .cart-info-section>tbody>tr.cart_item>th {
	padding: 13px 0;
}

.cart-item-center .cart-info-section>tbody>tr.cart_item:last-child {
	border-bottom: 0;
}

.name-cart {
	font-weight: 600;
}

.icon_we_accept .box_icon {
	flex: 0 0 33.33%;
	max-width: 33.33%;
}

.cart-totals-top>td {
	border: 0 !important;
}

.product-left .title-section {
	text-align: left !important;
	margin-bottom: 25px;
	border-top: 2px solid #ddd;
	padding-top: 10px;
}

.product-filter-botoom button.close_show {
	border: 0;
	background: none;
}

.target_show.toggle .product-filter-top {
	display: none !important;
}

.target_show.toggle .product-filter-botoom {
	display: block !important;
}

.product-filter-botoom {
	display: none;
}

.content-filter-product a.reset-attribute:before {
	display: none;
}

.content-filter-product a.reset-attribute {
	border: 0;
}

.content-filter-product>.row>div {
	border-right: 1px solid #cecece;
}

.content-filter-product>.row>div:last-child {
	border-right: 0;
}

.content-filter-product>.row {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px dashed;
}

.content-filter-product>.row:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: 0;
}

.product-image-detail .product-image-detail-top {
	margin-bottom: 20px;
}

.progress .progress-bar.bg-warning {
	line-height: 8px;
	background: var(--color-hightlight) !important;
	float: left;
	height: 100%;
	color: #fff;
}

.time_product .progress {
	height: 8px;
}

.progress {
	overflow: hidden;
	background-color: #f5f5f5;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
	box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
}

.product-content-detail .entire-attribute .list-attribute .reset-attribute::before ,.product-content-detail .entire-attribute .list-attribute .reset-attribute:after {
	display: none;
}

.product-content-detail .entire-attribute .list-attribute .reset-attribute {
	border: 0;
	font-weight: normal;
}

.quantity-buy .product-quantity input {
	font-weight: 600;
	font-size: 23px;
}

.quantity-buy .product-quantity {
	font-size: 32px;
	line-height: normal;
	width: 114px;
}

.btn-cart-buy {
	display: flex!important;
	justify-content: space-between;
	align-items: center;
}

.quantity-buy .btn-cart-buy {
	width: calc(100% - 114px);
	padding-left: 20px;
}

.quantity-buy .btn-cart-buy a.add-to-cart {
	flex: 0 0 48%;
	max-width: 48%;
}

.product-content-detail .entire-attribute .list-attribute>div>p, .entire-cart p {
	font-size: 14px;
}

button:hover , a:hover {
	text-decoration: none !important;
}

.card .icon-card img {
	width: 24px;
	height: 24px;
}

.item-text-right .input-login .form-group input {
	height: 46px;
	border-radius: 0;
	border: 0;
	border-bottom: 1px solid #ddd;
	padding: 10px 0;
	font-size: 16px;
}

.input-login .btn-login .btn-submit {
	height: 46px;
	line-height: 46px !important;
}

.session-login.confirm-phone .item-text-right form .form-group>span {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	border-right: 1px solid #ddd;
	padding-right: 15px;
	height: 35px;
	line-height: 35px;
}

.session-login.confirm-phone .item-text-right form .form-group input {
	border: 0;
	border-radius: 5px;
}

.session-login.confirm-phone .item-text-right form .form-group>span>span {
	padding-left: 8px;
	color: #969494;
}

.session-login.confirm-phone .item-text-right form .form-group {
	border: 1px solid #ddd;
	border-radius: 5px;
	padding-left: 95px;
}

.session-login.session-login-otp .item-text-right .input-login .input-opt input {
	border: 0;
	margin: 0 5px;
	background: #F3F5F9;
	height: 40px;
	width: 40px;
	border-radius: 5px;
}

.session-login.session-login-otp .item-text-right .input-login .input-opt {
	margin: 0 -5px;
}

.session-login.session-login-otp .item-text-right form>p>a {
	color: red;
}

.producr-detail-combined .title-section {
	text-align: left !important;
	margin-bottom: 20px;
}

.product-padding-right article.article-item .inner-image.ratio-custome {
	padding-top: 130%;
	border-radius: 12px;
	overflow: hidden;
}

.product-padding-right article.article-item .inner-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px 30px;
	min-height: 100px;
	background-color: rgb(238 238 238 / 30%);
}

.product-padding-right article.article-item .inner-content .article-title {
	font-size: 23px;
	font-weight: 700;
}

ul.list-unstyled.app>li>a>img {
	height: 28px;
}

footer .logo-section img {
	height: 56px;
}

.product-padding-right .slick-slider:hover .slick-prev {
	left: -23px;
}

.product-padding-right .slick-prev, .product-padding-right .slick-next {
	height: 46px;
	width: 46px;
	background: var(--white);
	border-radius: 50%;
}

.product-padding-right .slick-slider:hover .slick-next {
	right: -25px;
}

.target_show.toggle .product-filter-botoom .content-filter-product .filter-section .product-attribute-switch>li>a.inner-product-attribute {
	width: auto;
	font-weight: normal;
}

.product-filter-top .sort-right .dropdown-menu {
	background: var(--black);
	text-align: right;
	width: 180px;
}

.product-filter-top .sort-right .dropdown-menu a {
	color: var(--white);
}

.product-filter-top .sort-right .dropdown-menu a:hover {
	background-color: #222;
}

.slide-menu-section {
	margin-bottom: -10px;
}

.back-to-pc {
	display: block;
}

.back-to-mb {
	display: none;
}

.img-profile>img {
	width: 90px;
	height: 90px;
	object-fit: cover;
}

.item-address-member {
	border-bottom: 1px dashed;
}

.btn-add-member a {
	display: inline-block;
}

div#change-address-modal .modal-dialog {
	max-width: 600px;
}

div#change-address-modal .modal-body .form-group label {
	font-weight: 400;
}

.session-cart ul.member-categories-section>li {
	border-bottom: 1px dashed #ddd;
}

.menu-top-member-order>ul>li {
	list-style: none;
}

.list-order-element table>thead>tr>th:nth-child(2) {
	width: 13%;
}

.product-action .entire-attribute .product-attribute-switch .inner-product-attribute {
	width: 32px;
	height: 32px;
	border-radius: 100% !important;
	line-height: 30px;
	border: 1px dashed #ddd;
}

.product-action .entire-attribute .product-attribute-switch .inner-product-attribute.active {
	border: 1px solid var(--black);
}

.product-action .entire-attribute .product-attribute-switch .inner-product-attribute.active::before {
	display: none;
}

.banner-top {
	position: absolute;
	width: 100%;
}

.banner-top .banner-newest-lookbooks img {
	object-fit: cover;
	width: 100%;
	height: 80px;
}

.btn-delete-save>ul>li {
	list-style: none;
}

.quantity_cart .product-quantity {
	float: none;
}

.ui-slider .ui-slider-handle {
	border-radius: 50%;
	background: var(--color-hightlight);
	border-color: var(--color-hightlight);
	top: -8px;
}

.ui-slider-horizontal {
	height: 1px;
}

.ui-slider .ui-slider-range {
	background: var(--color-hightlight);
	height: 2px;
	top: -1px;
}

.color-orange {
	color: #FF7948;
}

.flex-7 {
	flex: 0 0 14.2857%;
}

.mx--10 {
	margin: 0 -10px;
}

.bg-gray {
	background: #f5f5f5;
}

.radius-5 {
	border-radius: 5px;
}

.radius-10 {
	border-radius: 10px;
}

.member-attendance .list-date [attendance-tick=true] {
	cursor: pointer;
}

.member-attendance .list-date [attendance-tick=true]:hover {
	background: #000;
	color: #fff;
}

.member-attendance .list-date [checked=checked] {
	cursor: context-menu;
	position: relative;
	text-align: center;
	background: #000;
	color: #fff;
}

.close.position-absolute {
	top: 5px;
	right: 0;
}

#modal-attendance-success .number-point {
	width: 70px;
	height: 70px;
	background: #000;
	margin: 0 auto;
	margin-bottom: 20px;
	text-align: center;
	color: #fff;
	line-height: 70px;
	font-size: 29px;
	font-weight: bold;
	border-radius: 100px;
}

#modal-attendance-error .modal-dialog, #modal-attendance-success .modal-dialog {
	top: 20%;
}

#modal-attendance-error .btn-default:hover, #modal-attendance-success .btn-default:hover {
	color: #fff;
}

.max-w-300 {
	max-width: 300px;
}

.btn-home-page {
	background-color: transparent;
	border: 1px solid var(--color-main);
	color: var(--color-main);
	text-align: center;
	border-radius: 5px;
	padding: 0 25px !important;
	height: 36px;
	line-height: 36px !important;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.btn-buy-point {
	background: var(--color-hightlight);
	color: var(--white);
}

.btn-buy-point:hover {
	color: var(--white);
}

.cursor-pointer {
	cursor: pointer;
}

.svg-white {
	filter: var(--svg-white);
}

.svg-hover:hover {
	filter: var(--svg-hover);
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.icon-close {
	-ms-transform: rotate(45deg);
 /* IE 9 */
	transform: rotate(45deg);
}

@media (min-width:1200px) {
	.footer-mid>.container>.row>div:nth-child(1) {
		flex: 0 0 37.33333%;
		max-width: 37.33333%;
	}

	.footer-mid>.container>.row>div:nth-child(2), .footer-mid>.container>.row>div:nth-child(3) {
		flex: 0 0 23%;
		max-width: 23%;
	}
}

@media (max-width:1200px) {
	.setting-menu-mb>.container>.row>div:nth-child(2) {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.menu-container nav.menu-section>ul {
		display: flex;
		flex-direction: column;
	}
}

@media (max-width:991px) {
	.content-filter-product>.row>div {
		border-right: 0;
	}

	.filter-section {
		padding: 5px 0;
	}

	.back-to-pc {
		display: none;
	}

	.back-to-mb {
		display: block;
	}
}

@media (max-width:576px) {
	.footer-mid-mb>.container>.row>div {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.product-pash-sale .title_sale {
		align-items: center;
	}

	.product-pash-sale .title_sale .time span {
		display: none;
	}

	.section-man-bannr .title-man .title-center {
		font-size: 25px;
	}

	.section-man-bannr .title-man .title-top {
		font-size: 20px;
	}

	.product-item .inner-content .product-title a {
		font-size: 12px;
	}

	.product-hot .product-hot-left .product-item .inner-content .product-title a {
		font-size: 25px;
	}

	.out-stock, .onsale, .featured {
		font-size: 10px;
		width: 47px;
		line-height: 25px;
		height: 25px;
	}

	.quantity-buy .btn-cart-buy {
		padding-left: 0;
		width: 100%;
	}

	.quantity-buy .product-quantity {
		font-size: 23px;
	}

	.quantity-buy .product-quantity input {
		width: 27px;
		padding: 0;
		font-size: 17px;
		height: 30px;
	}

	.product-content-detail .add-to-cart {
		padding: 5px 0 5px;
	}

	.quantity-buy .btn-cart-buy a.add-to-cart {
		font-size: 14px;
	}

	.cart-item-center .cart-info-section>tbody>tr.cart_item>td, .cart-item-center .cart-info-section>tbody>tr.cart_item>th {
		padding: 5px 0;
	}
}
/* Responsive */
.is-mobile .product-detail-footer {
	border-top: 1px solid #e3e3e3;
	margin-top: 15px;
	padding-top: 15px;
}

.is-mobile .product-detail-footer .nav {
	margin-bottom: 0;
	border-bottom: 0;
}

.is-mobile .product-detail-footer .nav li {
	margin-right: 20px;
}

.is-mobile .product-detail-footer .nav li a {
	font-size: 14px;
}

.is-mobile .product-detail-footer .nav li a::before {
	content: none;
}

.is-mobile .product-detail-footer .nav li a.active {
	color: var(--color-hightlight);
}

.is-mobile .box-rating {
	flex-direction: column;
}

.is-mobile .box-rating .author-info {
	flex: 1 1;
	padding: 0;
	display: flex;
	text-align: left;
}

.is-mobile .box-rating .author-info .letter-first {
	margin: 0 8px 0 0;
	height: 36px;
	width: 36px;
	line-height: 34px;
	font-size: 11px;
}

.is-mobile .box-rating .author-info .meta {
	text-align: left;
	padding-left: 10px;
	margin-top: 5px;
}

.is-mobile .box-rating .rating-content {
	width: 100%;
	padding-left: 0;
}

.is-mobile .box-rating .rating-content .entry-reply {
	margin-bottom: 10px;
}

.is-mobile .box-rating .child-reply .author-info .meta {
	padding-left: 0;
}

.is-mobile .box-rating .child-reply .reviews-form {
	background-color: transparent;
	padding: 0;
}

.is-mobile .reviews-form {
	background-color: transparent;
	padding: 0;
}

.is-mobile .reviews-form input[type=text], .is-mobile .reviews-form textarea {
	background-color: var(--light);
	border: 2px solid #dee2e6;
}

.is-mobile .logo-section {
	text-align: center;
}

.is-mobile .entry-topbar {
	display: block;
}

.is-mobile .entry-topbar .dropdown-topbar {
	justify-content: center;
}

.is-mobile .entry-topbar .left-topbar {
	display: block;
	text-align: center;
}

.is-mobile .entry-topbar .right-topbar ul {
	text-align: center;
	padding-left: 0;
}

.is-mobile .entry-topbar .slogan-topbar {
	height: inherit;
	line-height: inherit;
}

.is-mobile .search-section, .is-mobile .user-section {
	display: none;
}

.is-mobile .slider-section .slick-next:hover,
.is-mobile .slider-section .slick-prev:hover {
	background-color: rgba(255, 255, 255, 0.75);
}

.is-mobile .slider-section .slick-next:hover::before,
  .is-mobile .slider-section .slick-prev:hover::before {
	color: var(--color-main);
}

.is-mobile .slider-section .inner-title {
	font-size: 14px;
	margin-bottom: 10px;
}

.is-mobile .slider-section .inner-description {
	font-size: 28px;
	line-height: 35px;
}

.is-mobile .slider-section .inner-content {
	font-size: 13px;
	line-height: 16px;
	margin-top: 10px;
	margin-bottom: 15px;
}

.is-mobile .slider-section .btn-submit {
	font-size: 13px;
	line-height: 35px !important;
	height: 35px;
}

.is-mobile .menu-section {
	position: fixed;
	width: 290px;
	top: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	z-index: 1100;
	background-color: #fff;
	padding: 0 20px;
	overflow: auto;
	-webkit-transition: all 0.8s ease-in-out;
	transition: all 0.8s ease-in-out;
	-webkit-transform: translate3d(-290px, 0, 0);
	-moz-transform: translate3d(-290px, 0, 0);
	-ms-transform: translate3d(-290px, 0, 0);
	-o-transform: translate3d(-290px, 0, 0);
	transform: translate3d(-290px, 0, 0);
	-webkit-transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
	transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
	-webkit-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
	box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
}

.is-mobile .menu-section.open {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	padding-bottom: 90px;
}

.is-mobile .menu-section > ul > li {
	display: block;
	margin-right: 0;
	border-bottom: 1px solid #e3e3e3;
}

.is-mobile .menu-section > ul > li:last-child {
	border-bottom: 0;
}

.is-mobile .menu-section > ul > li > a {
	line-height: 1;
	height: auto;
	display: block !important;
	text-align: left;
	padding: 15px 0px;
	color: #000;
}

.is-mobile .menu-section > ul > li > .grower {
	top: 8px;
}

.is-mobile .menu-section .grower {
	display: block;
	position: absolute;
	top: 2px;
	right: 0;
	font-size: 14px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	cursor: pointer;
	opacity: 1;
	filter: alpha(opacity=100);
	z-index: 1;
}

.is-mobile .menu-section .grower::after {
	content: "\e908";
	font-family: "iconsax";
	vertical-align: bottom;
	font-weight: 600;
}

.is-mobile .menu-section .grower.open::after {
	content: "\eb1f";
}

.is-mobile .menu-section .menu-title {
	font-weight: normal;
	margin-bottom: 0;
	line-height: 1;
	padding: 10px 0;
	display: block;
}

.is-mobile .menu-section .row-menu {
	display: block;
	margin-right: 0px;
	margin-left: 0px;
}

.is-mobile .menu-section .row-menu > div, .is-mobile .menu-section .row-menu li {
	max-width: 100%;
	padding: 0 0 0 15px;
}

.is-mobile .menu-section .container-menu {
	border-left: 1px solid #e3e3e3;
	margin-bottom: 10px;
	min-height: auto !important;
}

.is-mobile .menu-section .container-menu .sub-menu {
	display: none;
	border-left: 1px solid #e3e3e3;
	padding: 0px;
	margin-bottom: 0px;
}

.is-mobile .menu-section .menu-link {
	line-height: 1;
	padding: 10px 0;
	color: var(--color-main);
}

.is-mobile .menu-section .child-indicator {
	display: none;
}

.is-mobile .menu-section .entry-menu.tabs-menu .tabs-item {
	padding-left: 15px;
}

.is-mobile .menu-section .entry-menu.tabs-menu .tabs-item.active > .menu-link {
	background-color: #fff;
}

.is-mobile .menu-section .entry-menu.tabs-menu .tabs-item > .menu-link {
	line-height: 1;
	width: 100%;
	padding: 10px 0;
}

.is-mobile .menu-section .entry-menu.tabs-menu .tabs-item > .sub-menu {
	width: 100%;
	position: static;
	padding: 0;
	margin-bottom: 0;
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
}

.is-mobile .menu-section .entry-menu.dropdown {
	margin-bottom: 10px;
}

.is-mobile .menu-section .entry-menu.dropdown ul {
	position: static;
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
	display: none;
	min-width: auto;
	margin: 0;
	padding: 0;
	border: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	border-left: 1px solid #e3e3e3;
}

.is-mobile .menu-section .entry-menu.dropdown ul li {
	padding-left: 15px;
}

.is-mobile .menu-section .entry-menu.full-width .container-menu {
	width: 100%;
}

.is-mobile .menu-section .has-child {
	position: relative;
}

.is-mobile .menu-section .has-child > a {
	position: relative;
}

.is-mobile .menu-section .has-child > a > span {
	display: none !important;
}

.is-mobile .menu-section .has-child > .entry-menu {
	position: static;
	padding: 0;
	border-top: 0;
	min-width: auto;
	width: auto;
	display: none;
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.is-mobile .menu-section .has-child > .entry-menu::before {
	content: none;
}

.is-mobile .menu-section .has-child:hover > a {
	color: inherit;
}

.is-mobile .menu-section .menu-top {
	display: block;
	position: relative;
	margin-bottom: 15px;
	margin-top: 20px;
}

.is-mobile .menu-section .menu-top .menu-close {
	position: absolute;
	top: 5px;
	right: 0;
	font-size: 20px;
}

.is-mobile .menu-section .close-sidebar {
	position: absolute;
	font-size: 30px;
	color: var(--color-main);
	top: -5px;
	right: 0;
}

.is-mobile .btn-menu-mobile {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 35px;
	display: inline-block;
	color: white;
}

.is-mobile .back-drop {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	z-index: 1020;
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
}

.is-mobile .back-drop.open {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
}

.is-mobile .sticky-menu.fix {
	-webkit-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}

.is-mobile .sticky-menu.fix.scroll-up {
	-webkit-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}

.is-mobile .sidebar-mini-cart {
	width: 290px;
}

.is-mobile .sidebar-mini-cart .content-mini-cart .cart-item {
	padding: 15px 0;
}

.is-mobile .sidebar-mini-cart .content-mini-cart .remove-mini-cart {
	top: 12px;
}

.is-mobile .hight-light .entry-content {
	flex-direction: column;
	text-align: center;
	margin-bottom: 10px;
}

.is-mobile .hight-light .entry-content .inner-icon {
	margin-right: 0;
}

.is-mobile .entire-video-banner {
	padding-top: 56%;
}

.is-mobile .entire-video-banner .entire-content .inner-descript {
	font-size: 30px;
	line-height: 38px;
}

.is-mobile .entire-video-banner .entire-content .inner-category {
	font-size: 14px;
}

.is-mobile .entire-info-website address {
	margin-bottom: 30px;
}

.is-mobile .product-detail-head .product-quantity, .is-mobile .product-detail-head .add-to-cart {
	margin-top: 5px;
	margin-bottom: 5px;
}

.is-mobile .view-small .product-item .inner-content {
	text-align: left;
}

.is-mobile .view-small .product-item .inner-content .star-rating {
	margin: 0;
}

.is-mobile .product-item .inner-image .product-action {
	display: none;
}

.is-mobile .product-item .inner-content .product-title {
	line-height: 1.2;
	margin-bottom: 3px;
}

.is-mobile .product-item .inner-content .product-rating-price {
	height: auto;
	line-height: 1.4;
}

.is-mobile .product-item .inner-content .product-rating-price .wrp-rating-price {
	height: auto;
}

.is-mobile .product-item .inner-content .star-rating {
	margin: 0 auto;
}

.is-mobile .product-item .inner-content .price > span {
	display: inline-block;
	padding: 0 3px;
}

.is-mobile .product-item .inner-content .price > span.price-amount.old-price {
	margin-left: 0;
}

.is-mobile .product-item:hover .inner-content .product-rating-price .wrp-rating-price {
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}

.is-mobile ul.pagination li.page-item:before {
	content: none;
}

@media (max-width: 1280px) {
	.menu-section .entry-menu.full-width .container-menu {
		width: auto;
	}

	.menu-section .entry-menu.multil-column {
		min-width: 620px;
	}

	.slick-slider .slick-arrow {
		opacity: 1;
		filter: opacity(1);
		visibility: visible;
	}

	.slick-slider .slick-prev {
		left: 0px;
	}

	.slick-slider .slick-next {
		right: 0px;
	}

	.slick-slider:hover .slick-prev {
		left: 0px;
	}

	.slick-slider:hover .slick-next {
		right: 0px;
	}

	.slick-slider::before, .slick-slider::after {
		content: none;
	}

	.slider-section .inner-title {
		font-size: 18px;
	}

	.slider-section .inner-description {
		font-size: 50px;
		line-height: 60px;
	}

	.entire-deal {
		padding: 50px 10px;
	}

	.entire-deal .title-deal {
		font-size: 30px;
		line-height: 40px;
	}

	.entire-deal .price, .entire-deal .countdown-wrapper, .entire-deal .description-deal {
		margin-bottom: 40px;
	}

	.entire-video-banner .entire-content .inner-descript {
		font-size: 38px;
		line-height: 42px;
	}

	.entire-video-banner .entire-content .inner-category {
		font-size: 18px;
	}
}

@media (max-width: 1000px) {
	.slick-dotted.slick-slider {
		margin-bottom: 30px;
	}

	.entry-topbar {
		display: block;
	}

	.entry-topbar .dropdown-topbar {
		justify-content: center;
	}

	.entry-topbar .left-topbar {
		display: block;
		text-align: center;
	}

	.entry-topbar .right-topbar ul {
		text-align: center;
		padding-left: 0;
	}

	.entry-topbar .slogan-topbar {
		height: inherit;
		line-height: inherit;
	}

	.search-section, .user-section {
		display: none;
	}

	.menu-section {
		position: fixed;
		width: 290px;
		top: 0;
		bottom: 0;
		left: 0;
		height: 100%;
		z-index: 1100;
		background-color: #fff;
		padding: 0 20px;
		overflow: auto;
		-webkit-transition: all 0.8s ease-in-out;
		transition: all 0.8s ease-in-out;
		-webkit-transform: translate3d(-290px, 0, 0);
		-moz-transform: translate3d(-290px, 0, 0);
		-ms-transform: translate3d(-290px, 0, 0);
		-o-transform: translate3d(-290px, 0, 0);
		transform: translate3d(-290px, 0, 0);
		-webkit-transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
		transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
		-webkit-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
		-moz-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
		box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
	}

	.menu-section.open {
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		-o-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	.menu-section > ul > li {
		display: block;
		margin-right: 0;
		border-bottom: 1px solid #e3e3e3;
	}

	.menu-section > ul > li:last-child {
		border-bottom: 0;
	}

	.menu-section > ul > li > a {
		line-height: 1;
		height: auto;
		display: block !important;
		text-align: left;
		padding: 15px 0px;
	}

	.menu-section > ul > li > .grower {
		top: 8px;
	}

	.menu-section .grower {
		display: block;
		position: absolute;
		top: 2px;
		right: 0;
		font-size: 14px;
		width: 30px;
		height: 30px;
		line-height: 30px;
		text-align: center;
		cursor: pointer;
		opacity: 1;
		filter: alpha(opacity=100);
		z-index: 1;
	}

	.menu-section .grower::after {
		content: "\e908";
		font-family: "iconsax";
		vertical-align: bottom;
		font-weight: 600;
	}

	.menu-section .grower.open::after {
		content: "\eb1f";
	}

	.menu-section .menu-title {
		font-weight: normal;
		margin-bottom: 0;
		line-height: 1;
		padding: 10px 0;
		display: block;
	}

	.menu-section .row-menu {
		display: block;
		margin-right: 0px;
		margin-left: 0px;
	}

	.menu-section .row-menu > div, .menu-section .row-menu li {
		max-width: 100%;
		padding: 0 0 0 15px;
	}

	.menu-section .container-menu {
		border-left: 1px solid #e3e3e3;
		margin-bottom: 10px;
		min-height: auto !important;
	}

	.menu-section .container-menu .sub-menu {
		display: none;
		border-left: 1px solid #e3e3e3;
		padding: 0px;
		margin-bottom: 0px;
	}

	.menu-section .menu-link {
		line-height: 1;
		padding: 10px 0;
		color: var(--color-main);
	}

	.menu-section .child-indicator {
		display: none;
	}

	.menu-section .entry-menu.tabs-menu .tabs-item {
		padding-left: 15px;
	}

	.menu-section .entry-menu.tabs-menu .tabs-item.active > .menu-link {
		background-color: #fff;
	}

	.menu-section .entry-menu.tabs-menu .tabs-item > .menu-link {
		line-height: 1;
		width: 100%;
		padding: 10px 0;
	}

	.menu-section .entry-menu.tabs-menu .tabs-item > .sub-menu {
		width: 100%;
		position: static;
		padding: 0;
		margin-bottom: 0;
		opacity: 1;
		filter: opacity(1);
		visibility: visible;
	}

	.menu-section .entry-menu.dropdown {
		margin-bottom: 10px;
	}

	.menu-section .entry-menu.dropdown ul {
		position: static;
		opacity: 1;
		filter: opacity(1);
		visibility: visible;
		display: none;
		min-width: auto;
		margin: 0;
		padding: 0;
		border: 0;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		-webkit-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px);
		border-left: 1px solid #e3e3e3;
	}

	.menu-section .entry-menu.dropdown ul li {
		padding-left: 15px;
	}

	.menu-section .entry-menu.full-width .container-menu {
		width: 100%;
	}

	.menu-section .has-child {
		position: relative;
	}

	.menu-section .has-child > a {
		position: relative;
	}

	.menu-section .has-child > a > span {
		display: none !important;
	}

	.menu-section .has-child > .entry-menu {
		position: static;
		padding: 0;
		border-top: 0;
		min-width: auto;
		width: auto;
		display: none;
		opacity: 1;
		filter: opacity(1);
		visibility: visible;
		-webkit-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px);
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}

	.menu-section .has-child > .entry-menu::before {
		content: none;
	}

	.menu-section .has-child:hover > a {
		color: inherit;
	}

	.menu-section .menu-top {
		display: block;
		position: relative;
		margin-bottom: 15px;
		margin-top: 20px;
	}

	.menu-section .menu-top .menu-close {
		position: absolute;
		top: 5px;
		right: 0;
		font-size: 20px;
	}

	.menu-section .close-sidebar {
		position: absolute;
		font-size: 30px;
		color: var(--color-main);
		top: -5px;
		right: 0;
	}

	.btn-menu-mobile {
		width: 40px;
		height: 40px;
		line-height: 40px;
		text-align: center;
		font-size: 35px;
		display: inline-block;
		color: var(--color-main);
	}

	.back-drop {
		position: fixed;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		background-color: rgba(0, 0, 0, 0.5);
		-webkit-transition: all 0.25s ease-in-out;
		transition: all 0.25s ease-in-out;
		z-index: 1020;
		opacity: 0;
		filter: opacity(0);
		visibility: hidden;
	}

	.back-drop.open {
		opacity: 1;
		filter: opacity(1);
		visibility: visible;
	}

	.sticky-menu.fix {
		-webkit-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
	}

	.sticky-menu.fix.scroll-up {
		-webkit-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
	}

	.sidebar-mini-cart {
		width: 290px;
	}

	.sidebar-mini-cart .content-mini-cart .cart-item {
		padding: 15px 0;
	}

	.sidebar-mini-cart .content-mini-cart .remove-mini-cart {
		top: 12px;
	}

	.hight-light .inner-icon {
		margin-right: 30px;
	}

	.title-section {
		margin-bottom: 30px;
	}

	.entire-info-website .descript-website-section, .entire-info-website address, .entire-info-website .social-footer-section {
		margin-bottom: 30px;
	}

	.product-tab .nav .nav-item {
		padding: 0 15px;
	}

	.product-tab .nav .nav-item .nav-link {
		font-size: 14px;
		padding-bottom: 10px;
	}

	.product-detail-head .product-quantity, .product-detail-head .add-to-cart {
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.form-billing label {
		margin-bottom: 5px;
	}

	.form-billing .form-group {
		margin-bottom: 15px;
	}
}

@media (min-width: 768px) and (max-width: 1280px) {
	.btn-action-header {
		padding: 8px 10px 7px;
	}

	.menu-section > ul > li {
		margin-right: 0px;
	}
}

@media (max-width: 991px) {
	.product-detail-footer {
		border-top: 1px solid #e3e3e3;
		margin-top: 15px;
		padding-top: 15px;
	}

	.product-detail-footer .nav {
		margin-bottom: 0;
		border-bottom: 0;
	}

	.product-detail-footer .nav li {
		margin-right: 20px;
	}

	.product-detail-footer .nav li a {
		font-size: 14px;
	}

	.product-detail-footer .nav li a::before {
		content: none;
	}

	.product-detail-footer .nav li a.active {
		color: var(--color-hightlight);
	}

	.box-rating {
		flex-direction: column;
	}

	.box-rating .author-info {
		flex: 1 1;
		padding: 0;
		display: flex;
		text-align: left;
	}

	.box-rating .author-info .letter-first {
		margin: 0 8px 0 0;
		height: 36px;
		width: 36px;
		line-height: 34px;
		font-size: 11px;
	}

	.box-rating .author-info .meta {
		text-align: left;
		padding-left: 10px;
		margin-top: 5px;
	}

	.box-rating .rating-content {
		width: 100%;
		padding-left: 0;
	}

	.box-rating .rating-content .entry-reply {
		margin-bottom: 10px;
	}

	.box-rating .child-reply .author-info .meta {
		padding-left: 0;
	}

	.box-rating .child-reply .reviews-form {
		background-color: transparent;
		padding: 0;
	}

	.reviews-form {
		background-color: transparent;
		padding: 0;
	}

	.reviews-form input[type=text], .reviews-form textarea {
		background-color: var(--light);
		border: 2px solid #dee2e6;
	}

	.entire-address {
		padding: 20px 0;
	}

	.comment-section .list-comment .comment-content {
		margin-left: 0;
	}

	.list-comment .list-reply {
		margin-left: 30px;
	}

	.comment-item .edit-comment {
		margin-left: 30px;
	}

	.edit-comment {
		margin-bottom: 30px;
	}

	.title-section {
		font-size: 25px;
		line-height: 30px;
	}

	.product-detail-footer {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	:not(.slick-vertical) .slider-thumbs .thumb-item {
		margin: 0 15px !important;
	}

	.product-image-detail .slider-thumbs {
		margin: 15px 0;
	}

	.product-image-detail .slider-thumbs .slick-list {
		margin: 0 -5px;
	}

	.product-image-detail .slider-thumbs .slick-prev {
		top: calc(-50% + 2px);
		left: 0;
		right: auto;
		width: 25px;
		height: calc(100% - 2px);
		margin: 0;
	}

	.product-image-detail .slider-thumbs .slick-prev::before {
		content: "\e931";
	}

	.product-image-detail .slider-thumbs .slick-next {
		top: calc(-50% + 2px);
		left: auto;
		right: 0;
		width: 25px;
		height: calc(100% - 2px);
		margin: 0;
	}

	.product-image-detail .slider-thumbs .slick-next::before {
		content: "\e936";
	}

	.product-image-detail .slider-thumbs .thumb-item {
		margin: 0;
	}

	.product-image-detail .slider-thumbs .thumb-item img {
		border: 1px solid transparent;
		object-fit: cover;
	}

	.product-image-detail .slider-thumbs .thumb-item.slick-current img {
		border: 1px solid #222;
	}

	.page-title-section.page-categories {
		background: #f3f3f3 !important;
		padding: 20px 0;
	}

	.page-title-section .inner-title {
		font-size: 30px;
	}

	.entry-order-review th, .entry-order-review td {
		font-size: 13px;
		padding: 7px 0;
	}

	.entry-order-review .order-total {
		font-size: 18px;
	}

	.entry-order-review .order-total .price-amount {
		font-size: 14px;
	}

	.entry-order-review .price-amount {
		font-size: 14px;
	}

	.payment-method .tab-content, .payment-method ul {
		padding: 0;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		border-right: 0;
	}

	.payment-method ul {
		border-bottom: 1px solid #e3e3e3;
		padding-bottom: 30px;
	}

	.payment-method ul li a.active::after {
		content: none;
	}

	.entire-cart-totals .order-total {
		font-size: 16px;
	}

	.entire-cart-totals .order-total td span {
		font-size: 16px;
	}

	.form-contact .title-section {
		padding-top: 30px;
	}
}

@media (max-width: 767px) {
	.deal-section {
		background-image: none !important;
		background-color: #e8eced;
	}

	.article-item .article-info .article-category {
		display: block;
		margin-right: 0;
	}

	.logo-section {
		text-align: center;
	}

	.work-time {
		margin-top: 40px;
		margin-bottom: 40px;
	}

	.slider-section .slick-next:hover,
  .slider-section .slick-prev:hover {
		background-color: rgba(255, 255, 255, 0.75);
	}

	.slider-section .slick-next:hover::before,
    .slider-section .slick-prev:hover::before {
		color: var(--color-main);
	}

	.slider-section .inner-title {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.slider-section .inner-description {
		font-size: 28px;
		line-height: 35px;
	}

	.slider-section .inner-content {
		font-size: 13px;
		line-height: 16px;
		margin-top: 10px;
		margin-bottom: 15px;
	}

	.slider-section .btn-submit {
		font-size: 13px;
		line-height: 35px !important;
		height: 35px;
	}

	.entire-video-banner {
		padding-top: 56%;
	}

	.entire-video-banner .entire-content .inner-descript {
		font-size: 30px;
		line-height: 38px;
	}

	.entire-video-banner .entire-content .inner-category {
		font-size: 14px;
	}

	.page-title-section .product-categories li {
		display: block;
	}

	.responsive-table.cart-info-section {
		margin-bottom: 15px;
	}

	.responsive-table.cart-info-section .item-quantity::before {
		margin-top: 10px;
	}

	.responsive-table.cart-info-section .item-quantity .product-quantity {
		border: 0;
		padding: 0;
	}

	.entire-cart-totals {
		margin-top: 15px;
	}

	.product-item .inner-image .product-action {
		display: none;
	}

	.product-item .inner-content .product-title {
		line-height: 1.2;
		margin-bottom: 3px;
	}

	.product-item .inner-content .product-rating-price {
		height: auto;
		line-height: 1.4;
	}

	.product-item .inner-content .product-rating-price .wrp-rating-price {
		height: auto;
	}

	.product-item .inner-content .star-rating {
		margin: 0 auto;
	}

	.product-item .inner-content .price > span {
		display: inline-block;
		padding: 0 3px;
	}

	.product-item .inner-content .price > span.price-amount.old-price {
		margin-left: 0;
	}

	.product-item:hover .inner-content .product-rating-price .wrp-rating-price {
		-webkit-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px);
	}

	.swal2-styled {
		padding: 0 10px;
	}

	.swal2-content, .swal2-actions, .swal2-header {
		padding: 7px 5px;
		text-align: center;
	}

	.swal2-actions button {
		font-size: 11px !important;
	}

	.swal2-actions {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.swal2-popup {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

@media (max-width: 700px) {
	.product-category-section > div {
		height: auto;
	}

	.product-category-section .inner-product-cat {
		height: auto;
		padding-top: 75%;
		margin-bottom: 30px;
	}

	.product-category-section .inner-product-cat.half-height {
		height: auto;
	}

	.hight-light .inner-icon {
		margin-right: 0px;
	}

	.hight-light .entry-content {
		flex-direction: column;
		text-align: center;
		margin-bottom: 30px;
	}

	.checkout-coupon .coupon-info::before, .checkout-coupon .coupon-info::after {
		content: none;
	}

	.product-content-detail .add-to-cart {
		/* max-width: 180px; */
	}

	.sidebar-mini-cart .sidebar-header {
		margin-top: 0;
	}

	.sidebar-mini-cart .content-mini-cart .inner-image img {
		width: 45px;
		max-height: 60px;
		margin-right: 10px;
	}

	.sidebar-mini-cart .content-mini-cart .inner-content {
		margin-left: 55px;
	}

	.sidebar-mini-cart .content-mini-cart .inner-content .product-title {
		font-size: 13px;
	}

	.sidebar-mini-cart .content-mini-cart .inner-content .quantity {
		font-size: 13px;
	}

	.sidebar-mini-cart .content-mini-cart .inner-content .quantity .price-amount {
		font-size: 13px;
	}

	.sidebar-mini-cart .content-mini-cart .total-price label {
		font-size: 14px;
	}

	.sidebar-mini-cart .content-mini-cart .total-price .price-amount {
		font-size: 16px;
	}

	.sidebar-mini-cart .content-mini-cart .mini-cart-btn {
		padding-top: 20px;
	}
}

@media (max-width: 575px) {
	.coppyright-payment .coppyright {
		text-align: center;
		margin-bottom: 5px;
	}

	.coppyright-payment .payment {
		text-align: center !important;
	}
}

@media (max-width: 420px) {
	.slider-section .inner-title {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.slider-section .inner-description {
		font-size: 20px;
		line-height: 24px;
		margin-bottom: 10px;
	}

	.slider-section .inner-content {
		display: none;
	}

	.slider-section .btn-submit {
		font-size: 13px;
		line-height: 35px !important;
		height: 35px;
	}
}

@media screen and (device-aspect-ratio: 2 / 3) {
	select, textarea, input[type="text"], input[type="password"] {
		font-size: 16px;
	}
}

/* Fix Input Zoom on iPhone 5, 5C, 5S, iPod Touch 5g */
@media screen and (device-aspect-ratio: 40 / 71) {
	select, textarea, input[type="text"], input[type="password"] {
		font-size: 16px;
	}
}

/* Fix Input Zoom on iPhone 6, iPhone 6s, iPhone 7  */
@media screen and (device-aspect-ratio: 375 / 667) {
	select, textarea, input[type="text"], input[type="password"] {
		font-size: 16px;
	}
}

/* Fix Input Zoom on iPhone 6 Plus, iPhone 6s Plus, iPhone 7 Plus, iPhone 8, iPhone X, XS, XS Max  */
@media screen and (device-aspect-ratio: 9 / 16) {
	select, textarea, input[type="text"], input[type="password"] {
		font-size: 16px;
	}
}